|
| How to convert this code to WX? |
| Iniciado por ANGELOREIS, 11,oct. 2016 23:44 - No hay respuesta |
| |
| | | |
|
| |
Miembro registrado 44 mensajes |
|
| Publicado el 11,octubre 2016 - 23:44 |
Hi everyone!
follow the code...
public static string UnZip(string value) { //Transform string into byte[] byte[] byteArray = new byte[value.Length]; int indexBA = 0; foreach (char item in value.ToCharArray()) { byteArray[indexBA++] = (byte)item; }
//Prepare for decompress System.IO.MemoryStream ms = new System.IO.MemoryStream(byteArray); System.IO.Compression.GZipStream sr = new System.IO.Compression.GZipStream(ms, System.IO.Compression.CompressionMode.Decompress);
//Reset variable to collect uncompressed result byteArray = new byte[byteArray.Length];
//Decompress int rByte = sr.Read(byteArray, 0, byteArray.Length);
//Transform byte[] unzip data to string System.Text.StringBuilder sB = new System.Text.StringBuilder(rByte); //Read the number of bytes GZipStream red and do not a for each bytes in //resultByteArray; for (int i = 0; i < rByte; i++) { sB.Append((char)byteArray[i]); } sr.Close(); ms.Close(); sr.Dispose(); ms.Dispose(); return sB.ToString(); }
-- Analista de Sistemas Jr www.arsistemas.com.br Pai da Alícia e Marido da Andréa <3 |
| |
| |
| | | |
|
| | | | |
| | |
|