String.split() generates a NullPointerException.
BufferedReader brs = new BufferedReader(new InputStreamReader(System.in));
String s1;
String s2[];
s1 = brs.readLine();
s2 = s1.split(" ");
|
s1 might be
|
|||
|
|
|
s1 might be null. Try this.
|
|||
|
|
|
Have you checked what's coming from |
|||
|
|
|
BufferedReader.readLine() returns null if the end of stream is encountered. See the javadoc. You should put a null check before you split s1. |
|||
|
|
|
if this line throws nullpointer
then s1 must be null check for null before you call EDIT split /EDIT Note: BufferedReader.readLine(); Returns: A String containing the contents of the line, not including any line-termination characters, or null if the end of the stream has been reached |
||||
|
|
|
Your BufferedReader is definately empty, so readline() returns null. Maybe your input stream is empty. |
|||
|
|
readLine()returns null. – Stephan Jan 6 '12 at 13:18