vote up -1 vote down star

I am trying to have the user input a number, and then that number is used to populate a text field on a jform. However it keeps giving me errors. If I have the textfield call the str it gives me a numberformatexception, if I have it call the int variable it says it has to be a string...

public static String prePaidstr = "";
public static double prePaidint = 0;

prePaidstr = 
JOptionPane.showInputDialog("Enter any amount prepaid:");
prePaidint = Double.parseDouble(prePaidstr);

jTextField13.setText(InvoiceSelectionUI.prePaidstr)
flag

It would help if you can publish the exception(s) thrown with their data. – Brian Agnew Oct 29 at 22:05

2 Answers

vote up 1 vote down check

parseDouble converts a String into a Double, which is why it complains if you try to pass it a double.

A NumberFormatException is thrown when parseDouble is unable to successfully turn a String into a double; in this case it's because you're trying to parseDouble on an empty string. prePaidStr needs to contain something like "1.99" - e.g. something that, to a human, looks like a Double.

link|flag
vote up 0 vote down

nm - I fixed it, just had one of the variables switched around

link|flag
1  
Then mark the question as answered so people don't waste time reading the question. – camickr Oct 29 at 22:57
cant accept your own answer for two days after posting. – Jason Oct 30 at 3:31
If the question is no longer relevant, you can close it instead. – Bears will eat you Oct 30 at 15:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.