是否可以将换行符写入套接字的输出流?

发布于 2024-12-22 16:49:37 字数 301 浏览 1 评论 0原文

我有一个运行良好的 Socket,但是是否可以向 Socket OutputStream 写入换行符?

这是我尝试过的:

InputStream input  = clientSocket.getInputStream();
PrintWriter out = new PrintWriter(clientSocket.getOutputStream(), true);

out.write("Hello" + "\r\n");          
out.write("People");

out.flush();

I have a Socket that works well, but is it possible to write a newline to the Socket OutputStream?

This is what I've tried:

InputStream input  = clientSocket.getInputStream();
PrintWriter out = new PrintWriter(clientSocket.getOutputStream(), true);

out.write("Hello" + "\r\n");          
out.write("People");

out.flush();

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

死开点丶别碍眼 2024-12-29 16:49:37

“换行符”是一个基于文本的概念。 OutputStream 是一个基于二进制的概念。

如果您要将文本写入套接字,则应该使用某种描述的Writer,例如OutputStreamWriter。然后,您可以将其包装在具有适当的 newLine() 方法的 BufferedWriter 中。

如果您向套接字写入文本,那么“换行”并没有多大意义。

"newline" is a text-based concept. An OutputStream is a binary-based concept.

If you're writing text to the socket, you should use a Writer of some description, e.g. an OutputStreamWriter. You can then wrap that in a BufferedWriter which has an appropriate newLine() method.

If you're not writing text to the socket, then "new line" doesn't really make much sense.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文