Package net.rim.device.api.compress

Examples of net.rim.device.api.compress.GZIPInputStream


        if( !bCompressed ) {
            return data;
        }

        GZIPInputStream gin = new GZIPInputStream( new ByteArrayInputStream( data ) );
        return IOUtilities.streamToBytes( gin ); // Return original data, or null
    }
View Full Code Here

TOP

Related Classes of net.rim.device.api.compress.GZIPInputStream

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.