java如何发送信息?

发布于 2024-08-19 20:45:31 字数 167 浏览 6 评论 0原文

告诉我。

当我调用 Socket.getOutputStream.write(); 时会发生什么?然后 Socket.getOutputStream.flush(); ? 因为当我想发送超过 8162 字节左右时,它只发送可以放置在这个大小中的字节。并且不会发送下一个字节。

请解释一下。

Tell me.

What heppens when I invoke Socket.getOutputStream.write(); then Socket.getOutputStream.flush(); ?
Because when I want to send more than around 8162 bytes It sends only bytes which can be placed in this size. And next bytes aren't sent.

Explain me please.

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

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

发布评论

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

评论(1

旧时浪漫 2024-08-26 20:45:31

我不做Java,我可能是错的,但我的建议是,Socket 有一个用于传出数据的缓冲区,大约 8162 字节是它的最大大小,超过该数量的数据将从缓冲区中被截断,因此会不被发送

I don't do Java and I may be wrong but my suggestion would be that Socket has a buffer for outgoing data and that approximately 8162 bytes is it's maximum size and that data in excess of that amount would be truncated from the buffer and therefore would not be sent

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