Quote:
Originally Posted by bookittysdad
It just hangs there.
|
That would typically indicate a non definitive loop.
In this case, variable str is never changed from the original value. Consider using a (it has beena while since I've used a buffered reader, but this looks right):
while (null != (str = reader.readLine())) instead.