請問,如果網站提供的json格式被壓縮 (如gz檔)
如網站 http://data.taipei/bus/ROUTE
使用okhttp要如何解壓縮後取得json格式的資料?
未壓縮的json資料以下面的程式碼接收正常,如要接收壓縮後的json資料要如何修改 ?
OkHttpClient client = new OkHttpClient();
String run(String url) throws IOException {
Request request = new Request.Builder()
.url(url)
.build();
Response response = client.newCall(request).execute();
return response.body().string();
}
取得資料後,我在網路上查到解密的程式碼(後面有敘述)。我先把json轉成byte[]
byte[] bZipJson = json.getBytes("utf-8");
後呼叫此function :
String json1 = uncompressToString(bZipJson,"utf-8");
不過在 GZIPInputStream gunzip = new GZIPInputStream(in);
出現 java.io.IOException: unknown format (magic number ef1f) 錯誤
我確認過,此檔案為gz檔沒錯,是哪裡出問題了 ?
網路程式碼如下:
public static String uncompressToString(byte[] b, String encoding) {
if (b == null || b.length == 0) {
Print("bus=>b=null");
return null;
}
try {
ByteArrayOutputStream out = new ByteArrayOutputStream();
ByteArrayInputStream in = new ByteArrayInputStream(b);
GZIPInputStream gunzip = new GZIPInputStream(in);
byte[] buffer = new byte[256];
int n;
while ((n = gunzip.read(buffer)) >= 0) {
out.write(buffer, 0, n);
}
return out.toString(encoding);
} catch (Exception e) {
Print("bus=>1Error:unzip : " + e.toString() );
e.printStackTrace();
return null;
}
//return "aaa";
}