I already know what is causing this error, I just do not know how to handle the case when a user doesn't enter anything into the dialogue box, then hit the button which parses the string into an int. It can't parse an empty string into an int, so it throws an error. I have done some research on how to do this, but have not found a satisfactory result that works.
Problem: How do you check to see if the dialogue box has text in it, before it tries to run the rest of the code.
Solution: An
if
statement.If you can spare the extra dependency, I'd pull in Common Lang StringUtils, to use StringUtils.isBlank instead of trim/isEmpty, because that also handles Unicode.
The Same Error Was Causing My Application To Crash. Ans is Simple- Put the code in the
and
Block which causes Exception ,like this code snip.This Works for me.
Some code would help with the syntax but basically
Also, you can surround with a
try/catch
and catch a numberFormatException then print an appropriate message