BASE64壓縮與解壓


BASE64壓縮與解壓

 /**
     * 字符串的壓縮
     *
     * @param base64 待壓縮的字符串
     *
     * @return 返回壓縮后的字符串
     *
     * @throws IOException
     */
    public static String zipBase64(String base64) throws IOException {
        if (null == base64 || base64.length() <= 0) {
            return base64;
        }
        // 創建一個新的 byte 數組輸出流
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        // 使用默認緩沖區大小創建新的輸出流
        GZIPOutputStream gzip = new GZIPOutputStream( out );
        // 將 b.length 個字節寫入此輸出流
        gzip.write( base64.getBytes() );
        gzip.close();
        // 使用指定的 charsetName,通過解碼字節將緩沖區內容轉換為字符串
        return out.toString( "ISO-8859-1" );
    }
/**
 * 字符串的解壓
 *
 * @param zipBase64 需要解壓的字符串
 *
 * @return 返回解壓縮后的字符串
 *
 * @throws IOException
 */
public static String upZip(String zipBase64) throws IOException {
    if (null == zipBase64 || zipBase64.length() &lt;= 0) {
        return zipBase64;
    }
    // 創建一個新的 byte 數組輸出流
    ByteArrayOutputStream out = new ByteArrayOutputStream();

    // 創建一個 ByteArrayInputStream,使用 buf 作為其緩沖區數組
    ByteArrayInputStream in = new ByteArrayInputStream( zipBase64 .getBytes( "ISO-8859-1" ) );

    // 使用默認緩沖區大小創建新的輸入流
    GZIPInputStream gzip = new GZIPInputStream( in );

    byte[] buffer = new byte[256];
    int n = 0;
    while ((n = gzip.read( buffer )) &gt;= 0) {// 將未壓縮數據讀入字節數組
        // 將指定 byte 數組中從偏移量 off 開始的 len 個字節寫入此 byte數組輸出流
        out.write( buffer, 0, n );
    }
    // 使用指定的 charsetName,通過解碼字節將緩沖區內容轉換為字符串
    return out.toString( "ISO-8859-1" );
}

轉自:https://blog.csdn.net/weixin_42321034/article/details/100514427?utm_medium=distribute.pc_feed_404.none-task-blog-BlogCommendFromBaidu-4.nonecase&depth_1-utm_source=distribute.pc_feed_404.none-task-blog-BlogCommendFromBaidu-4.nonecas


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM