实验十二
Posted jinnywang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实验十二相关的知识,希望对你有一定的参考价值。
代码如下:
package information;
import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;
class information extends JFrame
public information()
JFrame a=new JFrame();
a.setLayout(new FlowLayout());
a.setTitle("Introduction");
a.setSize(400,100);
a.setLocation(300,240);
String proList[] = "姓名","性别","年龄","民族" ,"籍贯","学号","学院","专业";
JComboBox comboBox;
Container conPane = getContentPane();
comboBox = new JComboBox(proList);
comboBox.setEditable(true);
conPane.add(comboBox);
JTextField b=new JTextField(20);
a.add(conPane);
a.add(b);
comboBox.addActionListener(new ActionListener()
public void actionPerformed(ActionEvent e)
if(comboBox.getSelectedItem().equals("姓名"))
b.setText("王菁源");
else if(comboBox.getSelectedItem().equals("性别"))
b.setText("女");
else if(comboBox.getSelectedItem().equals("年龄"))
b.setText("21");
else if(comboBox.getSelectedItem().equals("民族"))
b.setText("汉族");
else if(comboBox.getSelectedItem().equals("籍贯"))
b.setText("河北省新乐市");
else if(comboBox.getSelectedItem().equals("学号"))
b.setText("20173311142");
else if(comboBox.getSelectedItem().equals("学院"))
b.setText("计算机学院");
else if(comboBox.getSelectedItem().equals("专业"))
b.setText("网络工程");
);
a.setVisible(true);
public class information
public static void main(String[] args)
new introduce();
以上是关于实验十二的主要内容,如果未能解决你的问题,请参考以下文章