Hi,
I want to compress/transform a string as new string.
i.e.: input string:
USERNAME/REGISTERID
output string after compress:
<some-string-in-UTF8-format>
output string after decompress:
USERNAME/REGISTERID
There are some compress or hash method for this transformation?
I prefer some solution using Java or an algorithm with basic process steps.
I already read and try to use Huffman transformation, but the compressed output are composed by bytes outbound UTF-8 charset.
Thank,
And Past