I have a string that looks something like this:
"foobar\n"
I read this string using a BufferedReader. I need to be able to detect whether or not there is a new line present. I was using readLine, but I switched to read so I could grab the \n but no luck.
readwill return the newline character, so something else in your code must be causing the problem you are seeing. – Tim Feb 13 at 1:58