繁体   English   中英

Java NetBeans-如果jtextfield值为空,如何将jtextfield值分配为零

[英]Java netbeans - how assign jtextfield value to zero if jtextfield value is empty

    double B=Double.parseDouble(emp_txt2.getText());
    double C=Double.parseDouble(nopay_txt3.getText());
    double E=Double.parseDouble(wop_txt4.getText());
    double F=Double.parseDouble(wop_txt5.getText());

   double f =B+C+E+F;
   String p = String.format("%.2f",f);
   lb1_total3.setText(p);

当jtextfield为空时,我想将B,C,E,F的双精度值赋给零。

您可以使用此方法代替Double.parseDouble

public static double tryParsDouble(String s, double defaultValue) {
     if (s == null) return defaultValue;

     try {
         return Double.parseDouble(s);
     } catch (NumberFormatException x) {
         return defaultValue;
     }  
}

然后:

double F = tryParsDouble(wop_txt5.getText(), 0.0);

尝试在输入值emp_text2文本字段和代码分别返回下列值: "" " " "1" "1.1" "-1.1" "1.0 "返回0.00.01.01.1-1.11.0

如果输入为"1.1x"怎样? 这将引发NumberFormatException应用程序需要弄清楚该怎么做。

double value = getDoubleValue(emp_text2.getText());
...

private static double getDoubleValue(String input) {

    double result = 0d;

    if ((input == null) || input.trim().isEmpty()) {
        return result;
    }

    try {
        result = Double.parseDouble(input);
    }
    catch (NumberFormatException ex) {
        // return result -or-
        // rethrow the exception -or-
        // whatever the application logic says
    }

    return result;
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM