一个小程序,有错,请教
public class test extends Applet{
public void init()
{
Container cp=getContentPane();
cp.setLayout(new FlowLayout());
JButton B1=new JButton("开始");
JButton B2=new JButton("停止");
cp.add(B1);
cp.add(B2);
}
}
编译是错误如下:
D:\j2sdk1.4.0\bin>javac test.java
test.java:22: cannot resolve symbol
symbol : method getContentPane ()
location: class test
Container cp=getContentPane();
^
1 error
请问如何解决?
----------------解决方案--------------------------------------------------------
我发现在Applet不行,但在JApplet可行
小弟想是Applet不支持JButton等组件的原因吧,小弟初学,请各位高手指点一下,不胜感谢!
以下代码可以通过NetBeans编译运行 import javax.swing.*; import java.awt.*;
public class test extends javax.swing.JApplet { /** Initializes the applet test */ public void init() {
initComponents(); Container cp = getContentPane(); getContentPane().setLayout(new FlowLayout()); JButton B1=new JButton("开始"); JButton B2=new JButton("停止"); getContentPane().add(B1); getContentPane().add(B2); } private void initComponents() {
} }
----------------解决方案--------------------------------------------------------
我也认为是因为继承了Applet的原因
你可以去继承JApplet只有这个类才有getContentPane();
就像是Frame和JFrame一样
----------------解决方案--------------------------------------------------------