[問題] okhttp取得壓縮後json資料問題
請問,如果網站提供的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";
}
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 60.251.190.44
※ 文章網址: https://www.ptt.cc/bbs/AndroidDev/M.1500887240.A.B47.html
→
07/24 18:49, , 1F
07/24 18:49, 1F
→
07/25 09:14, , 2F
07/25 09:14, 2F
→
07/25 09:14, , 3F
07/25 09:14, 3F
※ 編輯: axalto (60.251.190.44), 07/25/2017 10:25:10
→
07/25 10:25, , 4F
07/25 10:25, 4F
→
07/25 10:25, , 5F
07/25 10:25, 5F
→
07/25 10:27, , 6F
07/25 10:27, 6F
→
07/25 10:29, , 7F
07/25 10:29, 7F
→
07/25 10:30, , 8F
07/25 10:30, 8F
→
07/25 10:30, , 9F
07/25 10:30, 9F
→
07/25 10:31, , 10F
07/25 10:31, 10F
→
07/25 10:33, , 11F
07/25 10:33, 11F
→
07/25 10:33, , 12F
07/25 10:33, 12F
→
07/25 11:05, , 13F
07/25 11:05, 13F
→
07/25 11:45, , 14F
07/25 11:45, 14F
→
07/25 11:46, , 15F
07/25 11:46, 15F
→
07/25 11:48, , 16F
07/25 11:48, 16F
→
07/25 11:52, , 17F
07/25 11:52, 17F
→
07/25 12:53, , 18F
07/25 12:53, 18F
→
07/25 14:26, , 19F
07/25 14:26, 19F
→
07/25 14:26, , 20F
07/25 14:26, 20F
→
07/25 15:03, , 21F
07/25 15:03, 21F
→
07/25 15:04, , 22F
07/25 15:04, 22F
→
07/25 15:04, , 23F
07/25 15:04, 23F
→
07/25 15:31, , 24F
07/25 15:31, 24F
→
07/25 16:45, , 25F
07/25 16:45, 25F
→
07/25 16:46, , 26F
07/25 16:46, 26F
→
07/27 14:45, , 27F
07/27 14:45, 27F
→
07/28 11:09, , 28F
07/28 11:09, 28F
AndroidDev 近期熱門文章
PTT數位生活區 即時熱門文章