JTextField ageTxt;
ageTxt = new JTextField("30");
int age = ageTxt.getText( );
if (age < 30)
System.out.println("You are young");
else
System.out.println("You are NOT young");
|
|
ageTxt.getText() returns a You can use |
|||
|
|||
|
|
|
Your question is not formulated quite well, but from what I can see you are trying to initialize int value with the method that returns String.
Instead, you should do:
And of course make sure parseInt doesn't throw an exception. |
|||
|
|
|
Hope so this will help you, as you are not casting the it to integer, getText() return a string that is why it gives you exception. First convert it into int like this and then use it.
|
|||
|
|
|
|
|||
|
|
