Java gzip.read 和 PHP fread() 给出不同的结果

发布于 2024-08-28 08:48:09 字数 352 浏览 11 评论 0原文

我在 Java 中有一行,在 while 中得到 number:

i = gzipinputstream1.read(abyte0, j, 4096);

From while number:

959
1552
1577
1617
1680

当我想在 php 中使用时:

$i = fread($handle, 959):

while return:

959,
959,
959,
5

如何使 PHP 中的结果相同?

I have line in Java and in while I get number:

i = gzipinputstream1.read(abyte0, j, 4096);

From while number:

959
1552
1577
1617
1680

when I want use in php:

$i = fread($handle, 959):

while return:

959,
959,
959,
5

How make that in PHP result will be the same?

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

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

发布评论

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

评论(1

十级心震 2024-09-04 08:48:09

您需要完全读取流。现在您正在指示Java 读取最大 4096 字节的长度,并且您指示 PHP 读取最大长度为 959 字节。

如果事先未知内容长度,那么在 Java 中您宁愿需要 InputStream#read() 方法不接受任何参数,在 PHP 中为 stream_get_contents() 其中省略 maxlength 和 offset 参数。

You need to read the stream fully in. Right now you're instructing Java to read a length of max 4096 bytes and you're instructing PHP to read a length of max 959 bytes.

If the content length is unknown beforehand, then in Java you rather need the InputStream#read() method which doesn't take any arguments and in PHP the stream_get_contents() wherein you omit the maxlength and offset arguments.

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