Ertai87
0
Q:

double parse jtextfield

public static void main(String[] args) {
    double amount=0.0;
    try {
         amount = Double.parseDouble(txtMonth.getText());
    } catch (Exception e) {
        System.err.println("ups, this was not castable to double");
          amount=-10.0;
    }
    System.out.println("Here is the double: "+ amount);
}
0
Double Amount = Double.valueOf(txtMonth.getText());
0
 double Amount = Double.parseDouble(txtMonth.getText());
0

New to Communities?

Join the community