Flex 无法足够快地处理 Java 套接字数据

发布于 2024-12-11 18:53:13 字数 200 浏览 0 评论 0原文

我通过套接字从 java 向 Flex 客户端发送一些数据,但 Flex 端似乎无法正确处理它。 在java中,我循环遍历8个对象,并为每个对象创建一个长字符串 1:lsls:2:3:justexample 然后java在每次迭代时都会 writeToSocket("1:lsls:2:3:justexample")循环。 但在客户端,8个中似乎只有2个到达。可能是什么问题? 谢谢。

I'm sending through a socket from java to flex client some data and the flex side can't seem to handle it right.
In the java i'm looping over 8 objects and for each object I create a long string 1:lsls:2:3:justexample then the java does writeToSocket("1:lsls:2:3:justexample") for every iteration of the loop.
But in the client side, it seems that only 2 out of the 8 arrived. what can be the problem?
Thanks.

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

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

发布评论

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

评论(1

醉酒的小男人 2024-12-18 18:53:13

如果您的客户端读取数据的速度不够快,则连接可能会被 Java 端过早重置 - 如果您在发送数据后 close() 套接字。您可以尝试 setSoLinger() 在连接实际关闭之前允许有更多时间传输排队数据。

If your client does not read the data fast enough it is possible that the connection is prematurely reset by the Java side - if you close() the socket after sending that is. You could try setSoLinger() to allow more time for transmission of queued data before the connection is actually closed.

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