天天看點

java字元串壓縮和解壓縮(gzip)

java對字元串進行壓縮和解壓縮

package com.durian.common.tool;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.zip.GZIPInputStream;
import java.util.zip.GZIPOutputStream;

/**
 * gzip 對字元串壓縮和解壓縮
 * @author leng
 *
 */
public class GzipStrUtils {
	
		  
	    public static void main(String[] args) throws IOException {  
	        // 字元串超過一定的長度  
	        String str = "ABCdef123中文[email protected]#$%^&*()_+{};/1111111111111111111111111AAAAAAAAAAAJDLFJDLFJDLFJLDFFFFJEIIIIIIIIIIFJJJJJJJJJJJJALLLLLLLLLLLLLLLLLLLLLL" +  
	                "LLppppppppppppppppppppppppppppppppppppppppp===========================------------------------------iiiiiiiiiiiiiiiiiiiiiii";  
	        System.out.println("\n原始的字元串為------->" + str);  
	        float len0=str.length();  
	        System.out.println("原始的字元串長度為------->"+len0);  
	  
	        String ys = compress(str);  
	        System.out.println("\n壓縮後的字元串為----->" + ys);  
	        float len1=ys.length();  
	        System.out.println("壓縮後的字元串長度為----->" + len1);  
	  
	        String jy = unCompress(ys);  
	        System.out.println("\n解壓縮後的字元串為--->" + jy);  
	        System.out.println("解壓縮後的字元串長度為--->"+jy.length());  
	          
	        System.out.println("\n壓縮比例為"+len1/len0);  
	          
	        //判斷  
	        if(str.equals(jy)){  
	            System.out.println("先壓縮再解壓以後字元串和原來的是一模一樣的");  
	        }  
	    }  
	  
	    /**  
	     * 字元串的壓縮  
	     *   
	     * @param str  
	     *            待壓縮的字元串  
	     * @return    傳回壓縮後的字元串  
	     * @throws IOException  
	     */  
	    public static String compress(String str) throws IOException {  
	        if (null == str || str.length() <= 0) {  
	            return str;  
	        }  
	        // 建立一個新的 byte 數組輸出流  
	        ByteArrayOutputStream out = new ByteArrayOutputStream();  
	        // 使用預設緩沖區大小建立新的輸出流  
	        GZIPOutputStream gzip = new GZIPOutputStream(out);  
	        // 将 b.length 個位元組寫入此輸出流  
	        gzip.write(str.getBytes());  
	        gzip.close();  
	        // 使用指定的 charsetName,通過解碼位元組将緩沖區内容轉換為字元串  
	        return out.toString("ISO-8859-1");  
	    }  
	      
	    /**  
	     * 字元串的解壓  
	     *   
	     * @param str  
	     *            對字元串解壓  
	     * @return    傳回解壓縮後的字元串  
	     * @throws IOException  
	     */  
	    public static String unCompress(String str) throws IOException {  
	        if (null == str || str.length() <= 0) {  
	            return str;  
	        }  
	        // 建立一個新的 byte 數組輸出流  
	        ByteArrayOutputStream out = new ByteArrayOutputStream();  
	        // 建立一個 ByteArrayInputStream,使用 buf 作為其緩沖區數組  
	        ByteArrayInputStream in = new ByteArrayInputStream(str  
	                .getBytes("ISO-8859-1"));  
	        // 使用預設緩沖區大小建立新的輸入流  
	        GZIPInputStream gzip = new GZIPInputStream(in);  
	        byte[] buffer = new byte[256];  
	        int n = 0;  
	        while ((n = gzip.read(buffer)) >= 0) {// 将未壓縮資料讀入位元組數組  
	            // 将指定 byte 數組中從偏移量 off 開始的 len 個位元組寫入此 byte數組輸出流  
	            out.write(buffer, 0, n);  
	        }  
	        // 使用指定的 charsetName,通過解碼位元組将緩沖區内容轉換為字元串  
	        return out.toString("UTF-8");  
	    }  

}
           

運作輸出結果

java字元串壓縮和解壓縮(gzip)