我可以向 InputStream 发送什么来表示已达到 EOF?
在服务器应用程序中,我正在监听套接字并使用 InputStreamReader
进行读取。
客户端是一个简单的 Bash 脚本,我在其中执行以下操作来写入套接字并打印输出:
#!/bin/bash
exec 3<>/dev/tcp/localhost/9999
echo -e some_text >&3
cat <&3
我希望在通过 echo
发送数据后按原样指示 EOF java应用程序接收发送的数据,但继续阻塞等待更多数据。我需要表明这一行是唯一的输入。
In a server app I am listening on a socket and reading using an InputStreamReader
.
The client is a simple Bash script, in which I do the following to write to the socket and print the output from it:
#!/bin/bash
exec 3<>/dev/tcp/localhost/9999
echo -e some_text >&3
cat <&3
I wold like to indicate EOF after I send my data via echo
, as-is the java app receives the data sent, but continues to block waiting for more. I need to signal that this one line is the only input.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此链接表明您确实
使用 Google 找到。 ;)
在 Java 端关闭
This link indicates you do
Found using google. ;)
To close on the Java side