当前位置: 代码迷 >> 综合 >> JOptionpane.showinputdialog 数据异常 处理
  详细解决方案

JOptionpane.showinputdialog 数据异常 处理

热度:92   发布时间:2024-01-14 08:02:59.0
first=JOptionPane.showInputDialog( "请输入第1条边长: ");
second=JOptionPane.showInputDialog( "请输入第2条边长: ");
third=JOptionPane.showInputDialog( "请输入第3条边长: ");

n1=Integer.parseInt(first);
n2=Integer.parseInt(second);
n3=Integer.parseInt(third);
添加异常处理,确保输入的数据不为空,并且都是正数?
try{
n1=Integer.parseInt(first);
n2=Integer.parseInt(second);
n3=Integer.parseInt(third);
}catch(NumberFormatException   e){
          System.out.println( "输入含有非数字符号!!!! ");
}

if(n1 <=0)
{
        //为非正数
}