歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Java中字符串壓縮的操作

這段時間項目中碰到一個問題,就是在做頁面操作的時候,要保存的數據長度大於了表定義的字段長度,我們現在的項目是基於component開發,由於component是屬於德國人開發,且德國人不願意更改他們的設計,所以最後沒有辦法最後只能想到了一個對字符串進行壓縮然後把壓縮後的字符串存進數據庫中,當需要從數據庫中取數據時,需要對取出的數據進行解壓縮,以前沒有碰到過這種情況,所以花了很久的時間才寫好了一個對字符串進行壓縮和解壓縮的類,如果寫的不恰當的地方或者有更好的辦法,還希望各位不吝賜教,該類的代碼如下:

 

  1. package com.eric.io;  
  2. import java.io.ByteArrayInputStream;  
  3. import java.io.ByteArrayOutputStream;  
  4. import java.io.IOException;  
  5. import java.util.zip.GZIPInputStream;  
  6. import java.util.zip.GZIPOutputStream;  
  7.   
  8. public class StringCompression {  
  9. //經過實踐考證,當需要壓縮的字符串長度越大時,壓縮的效果越明顯   
  10.     static String  code="UTF-8";  
  11.     public static String compress(String str) throws IOException {  
  12.         System.out.println("壓縮之前的字符串大小:"+str.length());  
  13.         if (str == null || str.length() == 0) {  
  14.             return str;  
  15.         }  
  16.         ByteArrayOutputStream out = new ByteArrayOutputStream();  
  17.         GZIPOutputStream gzip = new GZIPOutputStream(out);  
  18.         gzip.write(str.getBytes());  
  19.         gzip.close();  
  20.         return out.toString("ISO-8859-1");  
  21.     }  
  22.   
  23.     public static String uncompress(String str) throws IOException {  
  24.         System.out.println("壓縮之後的字符串大小:"+str.length());  
  25.         if (str == null || str.length() == 0) {  
  26.             return str;  
  27.         }  
  28.         ByteArrayOutputStream out = new ByteArrayOutputStream();  
  29.         ByteArrayInputStream in = new ByteArrayInputStream(str.getBytes("ISO-8859-1"));  
  30.         GZIPInputStream gunzip = new GZIPInputStream(in);  
  31.         byte[] buffer = new byte[256];  
  32.         int n;  
  33.         while ((n = gunzip.read(buffer)) >= 0) {  
  34.             out.write(buffer, 0, n);  
  35.         }  
  36.         return out.toString();  
  37.     }  
  38.   
  39.     public static void main(String[] args) throws IOException {  
  40.           
  41.         System.out.println(StringCompression.uncompress(StringCompression.compress(OracleCompressTest.append("i come from china"))));  
  42.     }  
  43.   
  44. }  
  45.   
  46. /* 
  47.  *  
  48.  * History: 
  49.  *  
  50.  *  
  51.  *  
  52.  * $Log: $ 
  53.  */  

Copyright © Linux教程網 All Rights Reserved