我写了一些Javascript代码。 用base64压缩并收缩
function base64 (str) {
return new Buffer(str).toString("base64");
}
function deflate (str) {
return RawDeflate.deflate(str);
}
function encode (str) {
return base64(deflate(str));
}
var str = "hello, world";
console.log("Test Encode");
console.log(encode(str));
我将“hello,world”转换为2f8d48710d6e4229b032397b2492f0c2
我想在java中解压缩这个字符串(2f8d48710d6e4229b032397b2492f0c2)
我把str放在一个文件中,然后:
public static String decompress1951(final String theFilePath) {
byte[] buffer = null;
try {
String ret = "";
System.out.println("can come to ret");
InputStream in = new InflaterInputStream(new Base64InputStream(new FileInputStream(theFilePath)), new Inflater(true));
System.out.println("can come to in");
while (in.available() != 0) {
buffer = new byte[20480];
*****line 64 excep happen int len = in.read(buffer, 0, 20480);
if (len <=0) {
break;
}
ret = ret + new String(buffer, 0, len);
}
in.close();
return ret;
} catch (IOException e) {
System.out.println("Has IOException");
System.out.println(e.getMessage());
e.printStackTrace();
}
return "";
}
但我有一个例外:
java.util.zip.ZipException: invalid stored block lengths
at java.util.zip.InflaterInputStream.read(Unknown Source)
at com.cnzz.mobile.datacollector.DecompressDeflate.decompress1951(DecompressDeflate.java:64)
at com.cnzz.mobile.datacollector.DecompressDeflate.main(DecompressDeflate.java:128)
答案 0 :(得分:0)
那里的java代码完美无缺。在评论中,你以某种方式得到编码值错误。我使用javascript值得到的编码值是y0jNycnXUSjPL8pJAQA=
然后,当您将此值复制到文件并调用decompress1951
时,您实际上会根据需要返回hello, world
。不知道在javascript部分说什么,因为您使用的代码似乎与分发网页上的示例很好地同步。我注意到有the original和the fork所以可能会有一些混乱吗?无论如何,有这个jsfiddle,如果你想看看那个,我认为可以看作是一个工作版本。