關於gzip服務端讀取方法

public String getParametersJsonString(HttpServletRequest request) {
        
        byte[] bt = null;
        String json = null;
        
        InputStream in = null;
        ByteArrayInputStream bin = null;
        GZIPInputStream ginzip = null;
        ByteArrayOutputStream out = null;
        try {
            in = request.getInputStream();
            bt = IOUtils.toByteArray(in);
            json = IOUtils.toString(bt, DEFAULT_CHARSET);
            if (!StringUtils.startsWith(json, "{")) {
                //如果不是json格式,則進行解壓
                bin = new ByteArrayInputStream(bt);
                ginzip = new GZIPInputStream(bin);
                out = new ByteArrayOutputStream();
                IOUtils.copy(ginzip, out);
                json = IOUtils.toString(out.toByteArray(), DEFAULT_CHARSET);
                if (StringUtils.isBlank(json)) {
                    LogUtil.error("gzip解壓請求數據爲空.");
                }
               
          } 
        } catch (IOException e) {
            ExceptionUtil.caught(e, e.getMessage());
        } finally {
            if (in!=null) {
                try {
                    in.close();
                } catch (IOException e) {
                    in = null;
                }
            }
            if (bin!=null) {
                try {
                    bin.close();
                } catch (IOException e) {
                    bin = null;
                }
            }
            if (ginzip!=null) {
                try {
                    ginzip.close();
                } catch (IOException e) {
                    ginzip = null;
                }
            }
            if (out!=null) {
                try {
                    out.close();
                } catch (IOException e) {
                    out = null;
                }
            }
        }
        return json;
    }
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章