Posted by ngonidan
(217.74.238.26) on September 30, 2011 at 05:32:08: In Reply to: How does one Compress and Decompress text to Card Files posted by ngonidan on September 28, 2011 at 13:02:55: I got a working Solution. BUT i am halfway to accomplishing what i want. The solution below works for One line of string.
OutputStream regionFilestream = regionFile.sysOpenAsOutputStream();
Reading a Compressed byte array from Basic Card file and uncompressing it:
BufferedInputStream bis = new BufferedInputStream(regionFilestream); byte[] byBuf = new byte[1024];
|