我可以向 InputStream 发送什么来表示已达到 EOF?

发布于 2024-11-18 08:59:40 字数 326 浏览 2 评论 0原文

在服务器应用程序中,我正在监听套接字并使用 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 技术交流群。

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

发布评论

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

评论(1

牵你的手,一向走下去 2024-11-25 08:59:40

链接表明您确实

exec 3>&- 

使用 Google 找到。 ;)


在 Java 端关闭

outputStream.close();

This link indicates you do

exec 3>&- 

Found using google. ;)


To close on the Java side

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