;
byte compressedText[] = new byte[compressedTextLength];
System.arraycopy(bytes, index, compressedText, 0,
compressedTextLength);
text = new String(new ZLibUtils().inflate(compressedText),
"utf-8");
} else
text = new String(bytes, index, bytes.length - index, "utf-8");
}