0

我使用下面的代码来解压缩通过socket.io.

当解压缩以压缩形式发送的数据时,下面的代码效果很好。(从 Node.js 发送的伪数据<Buffer a8 b2 ...>:)

但是,当解压缩已在 JSONArray 中发送的数据时,出现java.io.IOException: unknown format错误。(从 Node.js 发送的伪数据[<Buffer a8 b2 ..>, <Buffer c4 f0 ..>]:)

mSocket.on("fired", new Emitter.Listener() {
    @Override
    public void call(final Object... args) {
        JSONArray compressedDataArray = (JSONArray) args[0];
        byte[] compressedData = compressedDataArray.getString(0).toString().getBytes();
        String unzipped = new String(decompress(compressedData));
        Log.v("SAMPLE_TAG", "unzipped: " + unzipped) // LOGGING THE RESULT
    }
})


public byte[] decompress(byte[] data) throws IOException {
    ByteArrayOutputStream byteArrayOS = new ByteArrayOutputStream();
    GZIPInputStream gzipIS = new GZIPInputStream(new ByteArrayInputStream(data));

    byte[] buffer = new byte[1024];

    int len;
    while ((len = gzipIS.read(buffer)) > 0) {
      byteArrayOS.write(buffer, 0, len);
    }

    byteArrayOS.close();
    gzipIS.close();

    return byteArrayOS.toByteArray();
  }

有没有机会克服这个问题?

4

1 回答 1

0

我通过更改下面的行克服了这个问题:

byte[] compressedData = compressedDataArray.getString(0).toString().getBytes();

改为:

byte[] compressedData = (byte[]) compressedDataArray.get(0);

然后它工作。

于 2017-05-25T05:29:26.803 回答