Java 为什么这句出错了“String s = getParameter(num);”?
importjava.applet.Applet;importjava.awt.Graphics;/**Tochangethistemplate,chooseTools|...
import java.applet.Applet;
import java.awt.Graphics;
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author stud
*/
public class Java_2 extends Applet {
int num;
public void init() {
//*********Found********
String s = getParameter(num); //从html文件中获取参数
num = Integer.parseInt(s);
}
public void paint(Graphics g) {
for (int i = 0; i < num; i++) {
g.drawString("Hello!", 25 + i * 50, 25);
}
}
} 展开
import java.awt.Graphics;
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author stud
*/
public class Java_2 extends Applet {
int num;
public void init() {
//*********Found********
String s = getParameter(num); //从html文件中获取参数
num = Integer.parseInt(s);
}
public void paint(Graphics g) {
for (int i = 0; i < num; i++) {
g.drawString("Hello!", 25 + i * 50, 25);
}
}
} 展开
展开全部
你的Java_2类改成servlet类型,并且在默认给你的那个方法里String s = request.getParameter("num");来接收就可以了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
String s = request.getParameter("num");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询