[問題] okhttp取得壓縮後json資料問題

看板AndroidDev作者 (亞斯拓)時間7年前 (2017/07/24 17:07), 7年前編輯推噓0(0028)
留言28則, 5人參與, 最新討論串1/1
請問,如果網站提供的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
你要找的是如何解壓縮 gzip 檔
07/24 18:49, 1F

07/25 09:14, , 2F
你拿到應該是壓縮檔,可以用zipenty相關類去解壓縮,拿jso
07/25 09:14, 2F

07/25 09:14, , 3F
n字串
07/25 09:14, 3F
※ 編輯: axalto (60.251.190.44), 07/25/2017 10:25:10

07/25 10:25, , 4F
其實okhttp只要看到有content-encoding header是gzip就會自
07/25 10:25, 4F

07/25 10:25, , 5F
己解壓縮,這個網站沒提供就是了
07/25 10:25, 5F

07/25 10:27, , 6F
okhttp手動解壓建議你參考這個 https://goo.gl/DA4Gm2
07/25 10:27, 6F

07/25 10:29, , 7F
ss大您是說http://data.taipei/bus/ROUTE 沒提供嗎 ?
07/25 10:29, 7F

07/25 10:30, , 8F
維持原本okhttp內部用okio的處理方式,不過這個client也有
07/25 10:30, 8F

07/25 10:30, , 9F
用在不需解壓的地方的話還要再自己加些判斷
07/25 10:30, 9F

07/25 10:31, , 10F
是,這個網站沒提供content-encoding的header
07/25 10:31, 10F

07/25 10:33, , 11F
不過也有可能這網站就是放gzip不是json,他的content-type
07/25 10:33, 11F

07/25 10:33, , 12F
是application/octet-stream,而不是application/json
07/25 10:33, 12F

07/25 11:05, , 13F
我查到該網站是 :application/octet-stream Charset=UTF-8
07/25 11:05, 13F

07/25 11:45, , 14F
正式的壓縮作法是content-type要放解壓後的type,然後在
07/25 11:45, 14F

07/25 11:46, , 15F
content-encoding放壓縮方式,這個站就...不太標準
07/25 11:46, 15F

07/25 11:48, , 16F
octet-stream當然是萬用的,不過附個charset就奇怪了,通常
07/25 11:48, 16F

07/25 11:52, , 17F
是用在text類
07/25 11:52, 17F

07/25 12:53, , 18F
所以無解?
07/25 12:53, 18F

07/25 14:26, , 19F
要讓okhttp自動做的話無解,因為那網站你不能改。當然手動
07/25 14:26, 19F

07/25 14:26, , 20F
解壓縮可以
07/25 14:26, 20F

07/25 15:03, , 21F
我也是用工具看了一下網站回傳的Header才會這樣回
07/25 15:03, 21F

07/25 15:04, , 22F
所以我最開頭就說你要找的是如何解壓縮 gzip
07/25 15:04, 22F

07/25 15:04, , 23F
原因就如 ssccg 所說的
07/25 15:04, 23F

07/25 15:31, , 24F
自己抄去改吧 https://goo.gl/gHD4kW
07/25 15:31, 24F

07/25 16:45, , 25F
太感謝lovelycateye大大,我成功取得json資料了
07/25 16:45, 25F

07/25 16:46, , 26F
也非常感謝ssccg大大認真的解釋,收穫良多
07/25 16:46, 26F

07/27 14:45, , 27F
要感謝的是ssccg 肯仔細說明的人不多了。(我好懶)
07/27 14:45, 27F

07/28 11:09, , 28F
s大在這板真的是貢獻良多的好人好事代表...
07/28 11:09, 28F
文章代碼(AID): #1PTRZ8j7 (AndroidDev)
文章代碼(AID): #1PTRZ8j7 (AndroidDev)