Java gzip.read 和 PHP fread() 给出不同的结果
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要完全读取流。现在您正在指示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 thestream_get_contents()
wherein you omit the maxlength and offset arguments.