那些年,一起學的Java 8-2

來源:互聯網
上載者:User

標籤:java

2.import java.awt.FlowLayout;import java.awt.GridLayout;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import javax.swing.JButton;import javax.swing.JComboBox;import javax.swing.JFrame;import javax.swing.JLabel;import javax.swing.JPanel;import javax.swing.JRadioButton;import javax.swing.JTextArea;import javax.swing.JTextField;public class Test {public static void main (String[] args){JFrame test= new JFrame();test.setLayout(new FlowLayout());final JTextArea text1 = new JTextArea("", 16, 16);JPanel pan1 = new JPanel();pan1.add(new JLabel("2")); final JTextField text2 = new JTextField("姓名",30);final JRadioButton rbt1 = new JRadioButton("男");final JRadioButton rbt2 = new JRadioButton("女");String provinces[] = {"河南","河北","山東","山西"};String city[] = {"洛陽","洛龍區","龍門鎮","孟津縣"};final JComboBox cb1 = new JComboBox(provinces);final JComboBox cb2 = new JComboBox(city);final JButton but1 = new JButton("添加");but1.addActionListener(new ActionListener() {@Overridepublic void actionPerformed(ActionEvent e) {// TODO Auto-generated method stubif(e.getSource() == but1){String s1 = text2.getText();String s2 = null;if (rbt1.isSelected())s2 = rbt1.getText();else if (rbt2.isSelected())s2 = rbt2.getText();String s3 = cb1.getSelectedItem().toString();String s4 = cb2.getSelectedItem().toString();text1.setText(s1 + "\n" + s2 + "\n" + s3 + "\n" + s4 + "\n");}}});test.add(text1);test.add(pan1);test.add(text2);test.add(rbt1);test.add(rbt2);test.add(cb1);test.add(cb2);test.add(but1);test.setVisible(true);test.pack();}}


本文出自 “hacker” 部落格,請務必保留此出處http://anglecode.blog.51cto.com/5628271/1619871

那些年,一起學的Java 8-2

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.