- 论坛徽章:
- 0
|
问题如下:
//<applet code="app2" height="300" width="400">;
//</applet>;
import javax.swing.*;
import java.awt.*;
import java.applet.Applet;
public class app2 extends JApplet
{
JFrame frame =new JFrame();
JLabel label1 = new JLabel("Customer Name:" ;
JLabel label2 = new JLabel("Cell Number:" ;
JLabel label3 = new JLabel(" ackage:" ;
JLabel label4 = new JLabel("Age:" ;
JTextField text1 = new JTextField(50);
JTextField text2 = new JTextField(25);
JTextField text3 = new JTextField(2);
String [] s = {"Executive","Readable","Writable"};
JComboBox com1 = new JComboBox(s);
public void init()
{
JPanel panel = new JPanel();
getContentPane().add(panel);
GridBagLayout gbl = new GridBagLayout();
GridBagConstraints gbc = new GridBagConstraints();
panel.setLayout(gbl);
gbc.gridwidth=1;
gbc.anchor = GridBagConstraints.WEST;
gbl.setConstraints(label1,gbc);
panel.add(label1);
gbc.gridwidth=4;
gbc.anchor = GridBagConstraints.WEST;
gbc.gridwidth=GridBagConstraints.REMAINDER;
gbl.setConstraints(text1,gbc);
panel.add(text1);
gbc.gridwidth=1;
gbc.anchor = GridBagConstraints.WEST;
gbl.setConstraints(label2,gbc);
panel.add(label2);
gbc.gridwidth=2;
gbc.anchor = GridBagConstraints.WEST;
gbc.gridwidth=GridBagConstraints.REMAINDER;
gbl.setConstraints(text2,gbc);
panel.add(text2);
gbc.gridwidth=1;
gbc.anchor = GridBagConstraints.WEST;
gbl.setConstraints(label3,gbc);
panel.add(label3);
gbc.gridwidth=1;
gbc.anchor = GridBagConstraints.WEST;
gbc.gridwidth=GridBagConstraints.REMAINDER;
gbl.setConstraints(com1,gbc);
panel.add(com1);
gbc.gridwidth=1;
gbc.anchor = GridBagConstraints.WEST;
gbl.setConstraints(label4,gbc);
panel.add(label4);
gbc.gridwidth=1;
gbc.anchor = GridBagConstraints.WEST;
gbc.gridwidth=GridBagConstraints.REMAINDER;
gbl.setConstraints(text3,gbc);
panel.add(text3);
frame.getContentPane().add(panel);
frame.setVisible(true);
}
)
结果如下:
编译通过,执行不显示。
请高手解答。
谢谢。  |
|