
Java编程 50
Java编程3.编程实现下列界面,性别为可选项,男或女,当点击“提交”按钮时,在java控制台输出用户输入的姓名和性别。当点击“关闭”图标时,程序退出。(30分)...
Java编程3.编程实现下列界面,性别为可选项,男或女,当点击“提交”按钮时,在java控制台输出用户输入的姓名和性别。当点击“关闭”图标时,程序退出。(30分)
展开
展开全部
import java.awt.EventQueue;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.ButtonGroup;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JRadioButton;
import javax.swing.JTextField;
import javax.swing.border.EmptyBorder;
public class testJframe extends JFrame {
private JPanel contentPane;
private JTextField textField;
private String saveValue = "男" ;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
testJframe frame = new testJframe();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the frame.
*/
public testJframe() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 450, 300);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
contentPane.setLayout(null);
setContentPane(contentPane);
JLabel label = new JLabel("姓名");
label.setBounds(34, 48, 54, 15);
contentPane.add(label);
textField = new JTextField();
textField.setBounds(121, 45, 93, 21);
contentPane.add(textField);
textField.setColumns(10);
JLabel label_1 = new JLabel("性别");
label_1.setBounds(34, 86, 54, 15);
contentPane.add(label_1);
ButtonGroup bg = new ButtonGroup();
JRadioButton radioButton = new JRadioButton("男",true);
radioButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
JRadioButton temp=(JRadioButton)e.getSource();
if(temp.isSelected()){
saveValue=temp.getText();
}
}
});
radioButton.setSelected(true);
radioButton.setBounds(121, 82, 60, 23);
contentPane.add(radioButton);
JRadioButton radioButton_1 = new JRadioButton("女");
radioButton_1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
JRadioButton temp=(JRadioButton)e.getSource();
if(temp.isSelected()){
saveValue=temp.getText();
}
}
});
radioButton_1.setBounds(183, 82, 66, 23);
contentPane.add(radioButton_1);
bg.add(radioButton_1);
bg.add(radioButton);
JButton button = new JButton("提交");
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
System.out.println("姓名:"+textField.getText());
System.out.println("性别:"+saveValue);
}
});
button.setBounds(62, 156, 93, 23);
contentPane.add(button);
}
}
2018-05-11
展开全部
程序退出,即可。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |