读取已传输编码分块的 Flex/Flash URL

发布于 2024-09-16 03:36:39 字数 97 浏览 6 评论 0原文

我在从 Flex 读取具有 Transfer-Encoding: chunked 的 url 时遇到问题,因为 Flex 等待服务器发送终止信号,而在分块传输中不会发送该信号...

I have a problem reading from Flex a url which has Transfer-Encoding: chunked because the FLex waits for the server to send terminate signal which in chunked transfer isn't sent...

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

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

发布评论

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

评论(2

绅士风度i 2024-09-23 03:36:39

使用 URLStream 类而不是您现在使用的任何加载器。它的 ProgressEvents 将允许您在消息完成之前读取块。

Use the URLStream class instead of whatever loader you're using now. Its ProgressEvents will let you read chunks before the message completes.

偏闹i 2024-09-23 03:36:39

但如果你仔细阅读文档,你会发现以下内容。所以很明显,你只需要检查接收到的块的大小,直到它变为零。

数据传输由
最终长度为零的块

But if you read the documents a little more carefully, you will find the following. So it becomes clear, you just need to check the size of received chunks until it get ZERO.

The data transfer is terminated by a
final chunk of length zero

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