I'm writing a program for CS class assignment.
Basically it's a method that takes to command line arguments. Something like a CSV, so to call the call I do merge followed be the csv's.
eg merge 1,2,3,4 5,6,7,8
This will do two things. 1) it takes each list as an array argument then merges into 1 big array, 2) it sorts that array.
Here's the catch, from the command line we need to deal with null values. So a user could feed in:
merge 1,2,,3,4 5,6
How do I deal with this?
example of the error output:
Enter commands:
merge 12,,2 43
java.lang.NumberFormatException: For input string: ""
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
at java.lang.Integer.parseInt(Integer.java:493)
at java.lang.Integer.parseInt(Integer.java:514)
at CmdInterpreter.strArrayToIntArray(CmdInterpreter.java:143)
at CmdInterpreter.getIntArray(CmdInterpreter.java:130)
at Assign1.processOneCommand(Assign1.java:99)
at CmdInterpreter.processCommands(CmdInterpreter.java:198)
at CmdInterpreter.processCommands(CmdInterpreter.java:230)
at CmdInterpreter.ooMain(CmdInterpreter.java:243)
at MyAssign1.main(MyAssign1.java:20)
""is not anull. It is an emptyString, and is most definitely NOT equal tonull. – Stephen C Jan 26 '11 at 6:42