compressing and decompressing a string list
807606Jun 8 2007 — edited Jun 9 2007Hi All,
i need a help:
i have an string list say,
String sample="test";
String sample1="test1";
String sample2="test3";
i want to compress this sample,sample1,sample2 and store that compressed results into another string variable.
Ex:
compressedSample=sample;
compressedSample1=sample1;
compressedSample2=sample2;
similarly how can i uncompress the compressedSample,compressedSample1,compressedSample2 variables.
Thanks in advance