实验13

Posted beyondhuman

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实验13相关的知识,希望对你有一定的参考价值。

public class AA extends JFrame
public AA()

JFrame jf1=new JFrame ("Hello");
jf1.setLayout(new FlowLayout());
jf1.getContentPane().add(new JButton("姓名")) ;
jf1.getContentPane().add(new JTextField("廉春霖",09)) ;

JRadioButton j1=new JRadioButton("男",true);
JRadioButton j2=new JRadioButton("女");
ButtonGroup g=new ButtonGroup();
g.add(j1);
g.add(j2);
JPanel p1=new JPanel();
p1.add(j1);
p1.add(j2);
jf1.getContentPane().add(p1);
jf1.setSize(320,210);

String proList[] = "年龄","民族" ,"籍贯","学号","学院","专业";
JComboBox comboBox;
Container conPane = getContentPane(); 
comboBox = new JComboBox(proList); 
comboBox.setEditable(true); 
conPane.add(comboBox);
JTextField b=new JTextField(20);
jf1.add(conPane);
jf1.add(b);
comboBox.addActionListener(new ActionListener()
public void actionPerformed(ActionEvent e)
 
if(comboBox.getSelectedItem().equals("年龄"))
b.setText("20");
else if(comboBox.getSelectedItem().equals("民族"))
b.setText("汉");
else if(comboBox.getSelectedItem().equals("籍贯"))
b.setText("青海 海东");
else if(comboBox.getSelectedItem().equals("学号"))
b.setText("20173311108");
else if(comboBox.getSelectedItem().equals("学院"))
b.setText("计算机学院");
else if(comboBox.getSelectedItem().equals("专业"))
b.setText("网络工程");

);


jf1.setVisible(true);

public static void main (String[] args)
new AA()

以上是关于实验13的主要内容,如果未能解决你的问题,请参考以下文章

实验课06/13

实验13

实验11 12 13

10/13-10/19 java学习总结(没有课堂的课后学习总结) &实验总结6

201771010106东文财《面向对象程序设计(java)》实验13

实验13 OSPF基本配置