I am currently trying to read a String from a BufferedReader but cant find a way to do this...
String
BufferedReader
Of course I tried
BufferedR
Based on the documentation, the BufferedReader.readLine() returns null only when the end of the stream is reached. This means if the first call to readLine() returns null, there was nothing in the input stream to begin with.
BufferedReader.readLine()
null
readLine()