开发者

BufferedReader prepends input

开发者 https://www.devze.com 2023-04-07 07:03 出处:网络
I am trying to read from a Socket using Buffered开发者_开发问答Reader as follows BufferedReader in = new BufferedReader(new InputStreamReader(socket.getInputStream()));

I am trying to read from a Socket using Buffered开发者_开发问答Reader as follows

BufferedReader in = new BufferedReader(new InputStreamReader(socket.getInputStream()));
while ((line = in.readLine()) != null)
        {
        }

I input a string, say "AUTH", I am getting the value of line variable as ÿûÿû ÿûÿû'ÿýÿûÿýAUTH

Any solution to this problem?


That just means the extra data is in the socket for whatever reason. My guess is that you're using telnet to connect to the server, and that's the telnet protocol negotiation.

Java won't add extra data to what's genuinely there.


bufferedReader prepends input

No it doesn't. Something is writing extra input that you aren't expecting. In this case, Telnet. Telnet is a protocol that includes more than just lines of text.


BufferedReader.readLine() is for input that consists of "lines" make sure that you are providing input correctly. Alternatively, you can define your own terminator and then read input character by character using BufferedReader.read() (use a while loop if you don't know the length of input like while (in.read()!=-1) or something like this).

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号