欢迎来到天天文库
浏览记录
ID:49822716
大小:64.13 KB
页数:3页
时间:2020-03-04
《java找不到符号.pdf》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、importjava.awt.*;importjavax.swing.*;importjava.awt.event.*;publicclassWorker{publicstaticvoidmain(String[]args){JFramef=newJFrame("西南财经大学职工");JPanelcontentpane=newJPanel();contentpane.setLayout(newFlowLayout(FlowLayout.LEFT));f.setContentPane(contentpane);ImageIconicon
2、=newImageIcon("woker,dif");JLabell1=newJLabel("姓名职工编号信息",icon);JLabell2=newJLabel("你有哪些兴趣爱好?");JTextFieldtf=newJTextField("四川省成都市");JRadioButtonrad1=newJRadioButton("男");JRadioButtonrad2=newJRadioButton("女");JCheckBoxc1=newJCheckBox("篮球",false);JCheckBoxc2=newJCheckBox(
3、"音乐",false);JCheckBoxc3=newJCheckBox("舞蹈",false);JCheckBoxc4=newJCheckBox("主持",false);ButtonGroupbg1=newButtonGroup();bg1.add(rad1);bg1.add(rad2);JTextAreata=newJTextArea("个人简介信息");contentpane.add(l1);contentpane.add(tf);contentpane.add(ta);contentpane.add(l2);contentpa
4、ne.add(bg1);contentpane.add(bg2);f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);f.setSize(600,400);f.setVisible(true);}}importjava.awt.*;importjavax.swing.*;importjava.awt.event.*;publicclassTest{publicstaticvoidmain(String[]args){JFramef=newJFrame("西南财经大学职工");JPanelc
5、ontentpane=newJPanel();contentpane.setLayout(newFlowLayout(FlowLayout.LEFT));ImageIconicon=newImageIcon("woker,dif");JLabell1=newJLabel("姓名职工编号信息");l1.setIcon(icon);//这里分开设置JLabell2=newJLabel("你有哪些兴趣爱好?");JTextFieldtf=newJTextField("四川省成都市");JRadioButtonrad1=newJRadioBu
6、tton("男");JRadioButtonrad2=newJRadioButton("女");JCheckBoxc1=newJCheckBox("篮球",false);JCheckBoxc2=newJCheckBox("音乐",false);JCheckBoxc3=newJCheckBox("舞蹈",false);JCheckBoxc4=newJCheckBox("主持",false);ButtonGroupbg1=newButtonGroup();bg1.add(rad1);bg1.add(rad2);JTextAreata=ne
7、wJTextArea("个人简介信息");contentpane.add(l1);contentpane.add(tf);contentpane.add(ta);contentpane.add(l2);contentpane.add(rad1);//添加rad就行了,不能添加按钮组的contentpane.add(rad2);f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);f.setSize(600,400);f.setContentPane(contentpane);f.setVis
8、ible(true);}}
此文档下载收益归作者所有