新手求助java图形界面程序设计和事件响应问题
publicclassMyFrameextendsJFrameimplementsActionListener{privateJTextFieldnameField;pr...
public class MyFrame extends JFrame implements ActionListener{
private JTextField nameField;
private JTextField ageField;
private JTextField eduField;
private JTextField shortintrField;
private JButton inputButton;
private JRadioButton manRadioButton;
private JRadioButton womanRadioButton;
public MyFrame() {
//super(); // 继承父类的构造方法
setTitle("个人信息");
setBounds(100, 100, 260, 250); // 设置窗体的显示位置及大小
getContentPane().setLayout(null); // 设置为不采用任何布局管理器
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JLabel label = new JLabel(); // 创建标签对象
label.setText("性别:"); // 设置标签文本
label.setBounds(38, 10, 46, 15); // 设置标签的显示位置及大小
getContentPane().add(label); // 将标签添加到窗体中
ButtonGroup buttonGroup = new ButtonGroup(); // 创建按钮组对象
JRadioButton manRadioButton = new JRadioButton(); // 创建单选按钮对象
buttonGroup.add(manRadioButton); // 将单选按钮添加到按钮组中
manRadioButton.setSelected(true); // 设置单选按钮默认为被选中
manRadioButton.setText("男"); // 设置单选按钮的文本
manRadioButton.setBounds(62, 6, 46, 23); // 设置单选按钮的显示位置及大小
getContentPane().add(manRadioButton); // 将单选按钮添加到窗体中
JRadioButton womanRadioButton = new JRadioButton();
buttonGroup.add(womanRadioButton);
womanRadioButton.setText("女");
womanRadioButton.setBounds(114, 6, 46, 23);
getContentPane().add(womanRadioButton);
JLabel nameLabel = new JLabel();
nameLabel.setText("姓名:");
nameLabel.setBounds(38, 35, 60, 15); // 设置“名”标签的显示位置及大小
getContentPane().add(nameLabel);
JTextField nameField = new JTextField();
nameField.setBounds(89, 33, 120, 21); //
getContentPane().add(nameField);
JButton inputButton = new JButton();
inputButton.setText("输入");
inputButton.setBounds(141, 181, 68, 23); // 设置“输入”按钮的显示位置及大小
getContentPane().add(inputButton);
inputButton.addActionListener(this);
}
public void actionPerformed(ActionEvent ev)
{
File file=new File("F:\\","sava.txt");
PrintStream ps;
try{
String str;
if(!file.exists())
file.createNewFile();
ps=new PrintStream(new FileOutputStream(file));
str=nameField.getText();
ps.println("姓名:"+str+"\t");
str=ageField.getText(); @@@@@@@@@@@@@@
//ps.close();
}catch(Exception e){
e.printStackTrace();
}
}
public static void main(String args[]) {
MyFrame frame = new MyFrame();
frame.setVisible(true);
}
}
为什么当程序执行到str=ageField.getText();时就发生异常?
还有就是如何货如RadioButton是否被选中呢?
希望各位高手能帮忙解决下!!!!!!!
private JTextField ageField;
private JTextField eduField;
private JTextField shortintrField;
这几个按钮的相关代码被我省去了,百度说不能放那么多文字啊! 展开
private JTextField nameField;
private JTextField ageField;
private JTextField eduField;
private JTextField shortintrField;
private JButton inputButton;
private JRadioButton manRadioButton;
private JRadioButton womanRadioButton;
public MyFrame() {
//super(); // 继承父类的构造方法
setTitle("个人信息");
setBounds(100, 100, 260, 250); // 设置窗体的显示位置及大小
getContentPane().setLayout(null); // 设置为不采用任何布局管理器
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JLabel label = new JLabel(); // 创建标签对象
label.setText("性别:"); // 设置标签文本
label.setBounds(38, 10, 46, 15); // 设置标签的显示位置及大小
getContentPane().add(label); // 将标签添加到窗体中
ButtonGroup buttonGroup = new ButtonGroup(); // 创建按钮组对象
JRadioButton manRadioButton = new JRadioButton(); // 创建单选按钮对象
buttonGroup.add(manRadioButton); // 将单选按钮添加到按钮组中
manRadioButton.setSelected(true); // 设置单选按钮默认为被选中
manRadioButton.setText("男"); // 设置单选按钮的文本
manRadioButton.setBounds(62, 6, 46, 23); // 设置单选按钮的显示位置及大小
getContentPane().add(manRadioButton); // 将单选按钮添加到窗体中
JRadioButton womanRadioButton = new JRadioButton();
buttonGroup.add(womanRadioButton);
womanRadioButton.setText("女");
womanRadioButton.setBounds(114, 6, 46, 23);
getContentPane().add(womanRadioButton);
JLabel nameLabel = new JLabel();
nameLabel.setText("姓名:");
nameLabel.setBounds(38, 35, 60, 15); // 设置“名”标签的显示位置及大小
getContentPane().add(nameLabel);
JTextField nameField = new JTextField();
nameField.setBounds(89, 33, 120, 21); //
getContentPane().add(nameField);
JButton inputButton = new JButton();
inputButton.setText("输入");
inputButton.setBounds(141, 181, 68, 23); // 设置“输入”按钮的显示位置及大小
getContentPane().add(inputButton);
inputButton.addActionListener(this);
}
public void actionPerformed(ActionEvent ev)
{
File file=new File("F:\\","sava.txt");
PrintStream ps;
try{
String str;
if(!file.exists())
file.createNewFile();
ps=new PrintStream(new FileOutputStream(file));
str=nameField.getText();
ps.println("姓名:"+str+"\t");
str=ageField.getText(); @@@@@@@@@@@@@@
//ps.close();
}catch(Exception e){
e.printStackTrace();
}
}
public static void main(String args[]) {
MyFrame frame = new MyFrame();
frame.setVisible(true);
}
}
为什么当程序执行到str=ageField.getText();时就发生异常?
还有就是如何货如RadioButton是否被选中呢?
希望各位高手能帮忙解决下!!!!!!!
private JTextField ageField;
private JTextField eduField;
private JTextField shortintrField;
这几个按钮的相关代码被我省去了,百度说不能放那么多文字啊! 展开
2个回答
展开全部
你说的异常不是运行界面时候的一场吧,是指输入提交产生的那个java.lang.NullPointerException吧。
这个问题是因为你没有给定义的文本域进行初始化,所以在str=nameField.getText()调用nameField的时候会提示空指针异常,其实下面几句类似的都有这个异常,因为你的文本域都没有初始化,将你的文本域定义语句改为:
private JTextField nameField = new JTextField();
private JTextField ageField = new JTextField();
private JTextField eduField = new JTextField();
private JTextField shortintrField = new JTextField();
只要改这几句,程序就没问题了。
至于如何判断单选按钮是否被选中,我给你发了个pdf文档,你自己看看吧,很简单的。
东西都发到294617181@qq.com这个邮箱了。
这个问题是因为你没有给定义的文本域进行初始化,所以在str=nameField.getText()调用nameField的时候会提示空指针异常,其实下面几句类似的都有这个异常,因为你的文本域都没有初始化,将你的文本域定义语句改为:
private JTextField nameField = new JTextField();
private JTextField ageField = new JTextField();
private JTextField eduField = new JTextField();
private JTextField shortintrField = new JTextField();
只要改这几句,程序就没问题了。
至于如何判断单选按钮是否被选中,我给你发了个pdf文档,你自己看看吧,很简单的。
东西都发到294617181@qq.com这个邮箱了。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询