java中的获得文本框中的异常.
publicvoidactionPerformed(ActionEvente){if(e.getSource()==btCancle){dispose();}try{//...
public void actionPerformed(ActionEvent e) {
if (e.getSource() == btCancle) {
dispose();
}
try { //有未知异常
if (e.getSource() == btOK) {
if (jt.getText().trim().equals("")) {
JOptionPane.showMessageDialog(null, "请输入学号");}
else if (jt.getText() != "") {
int x = Integer.parseInt(jt.getText());
new ShowStudent(x);
//dispose();
System.out.println(x);
System.out.println("连接成功");
}
}
} catch (Exception ex) {
JOptionPane.showMessageDialog(null, "异常");
}
}
其中jt为文本框.这其中有什麽异常?是获得文本内容赋值的问题吗? 展开
if (e.getSource() == btCancle) {
dispose();
}
try { //有未知异常
if (e.getSource() == btOK) {
if (jt.getText().trim().equals("")) {
JOptionPane.showMessageDialog(null, "请输入学号");}
else if (jt.getText() != "") {
int x = Integer.parseInt(jt.getText());
new ShowStudent(x);
//dispose();
System.out.println(x);
System.out.println("连接成功");
}
}
} catch (Exception ex) {
JOptionPane.showMessageDialog(null, "异常");
}
}
其中jt为文本框.这其中有什麽异常?是获得文本内容赋值的问题吗? 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询