Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to connect to the POP server through Sockets in Java. I did the following code to run a LIST command to list all the emails from the server. But I don't know why on the second readLine() to read the second line and onwards, my application hangs at there.

popSock = new Socket(mailHost, pop_PORT);
inn = popSock.getInputStream();
outt = popSock.getOutputStream();
in = new BufferedReader(new InputStreamReader(inn));
out = new PrintWriter(new OutputStreamWriter(outt), true);

//USER and PASS commands to auth the server are ok

out.println("LIST");
String response = in.readLine();
System.out.println(response);

//Attempt to read the second line from the buffer but it hangs at here.
response = in.readLine();
System.out.println(response);

On the second in.readLine(), the application gets stuck at here and doesn't proceed from here. When I run the LIST command on telnet, I get the whole list of emails. So I should get the same response from the socket but I am not. How should I read the whole response line by line from the server?

share|improve this question
Well, your first readLine() will give the welcome message. So it seems likely that readLine() is blocking because the LIST didn't work right. Maybe your POP server is strictly RFC compliant? Does out.print("LIST\r\n") change the behavior? – Edward Thomson Oct 13 '11 at 16:57
Unfortunately, adding \r\n still doesn't work. The LIST command does work. I could see the first line of the response. But after which, the application hangs when I want to read the second line and onward. – Carven Oct 13 '11 at 17:01
what did you receive as first line after sending LIST? – ratchet freak Oct 13 '11 at 17:10
I receive this: +OK 3545 62967125. So it means that the LIST works. But there should more lines after this one, which is the whole list of emails. – Carven Oct 13 '11 at 17:15
any reason not to use a java pop3 library? – artbristol Oct 13 '11 at 17:59
show 2 more comments

3 Answers

up vote 2 down vote accepted

readLine() won't return until it's read a carriage return or a line feed, which is what you normally get when you read from a terminal or a text file.

I wouldn't be surprised if the POP server doesn't actually tack \r\n on the end of its messages. Try read() instead.

share|improve this answer
It appears that that the readLine() is still waiting for a response from the server and therefore hangs at there. A check with while (String tmp = in.readLine()) != null) doesn't work. It still go beyond the lines of the response. Why doesn't the check in the while loop work? – Carven Oct 14 '11 at 16:32

You should be sending \r\n after each command, also, try not using a BufferedInputStream, try reading directly from the InputStream byte by byte to see at which point it actually hangs. The BufferedInputStream may be hanging waiting to read more before returning what it has already read.

share|improve this answer

Try reading it one character at a time using in.read and printing it. Perhaps, there's an issue with the newline character that the server is sending.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.