Compression and decompression of Android Java strings __java

Source: Internet
Author: User

Recently doing Android development, socket to pass message information, message information is JSON format, the data is very high repeatability so we found a method of compressing the string, the larger the data compression more obvious.

Data transfer, sometimes need to compress and decompress, this example uses Gzipoutputstream/gzipinputstream implementation.

1, using iso-8859-1 as the intermediary code, can guarantee accurate restore data
2, when the character encoding is determined, you can explicitly specify the encoding in the last sentence of the Uncompress method import java.io.bytearrayinputstream;    import java.io.bytearrayoutputstream;    import java.io.ioexception;    import java.util.zip.gzipinputstream;    import java.util.zip.gzipoutputstream;       public class ziputil {       //  compression           public static string compress (String  STR)  throws ioexception {           if   (str == null | |  str.length ()  == 0)  {              return str;            }             bytearrayoutputstream out = new bytearrayoutputstream ();  &nbSp         GZIPOutputStream gzip = new  Gzipoutputstream (out);            gzip.write (Str.getbytes ());            gzip.close ();            return out.tostring ("iso-8859-1");         &nbsp}             / /  Decompression           public static string uncompress (STRING STR)  throws ioexception {            if  (str == null | |  str.length ()  == 0)  {              return str;            }        &NBsp;   bytearrayoutputstream out = new bytearrayoutputstream ();            ByteArrayInputStream in = new  Bytearrayinputstream (str   

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.