A
Austin
I am looking for a way to compress a short string to a shorter string
then be able to un-compress it at the other end.
To be more specific I have a site with an extremely long set of
parameters in the URL, I want to compress these and use one very short
parameter which I can then un-compress and read them all back. I have
already taken other steps to reduce the length.
To through a bit more information in the pot, the string is made up of
[a-z0-9] and the compressed string can use any of the UTF-8 chars.
Our server side code is J2EE Java and I will be using this for the
compression/un-compression.
I have tried Gzip, and briefly looked at crypto triple des ecryption
not because i want to make this secure but because for some reason i
thought it might give me a short encrypted string.
then be able to un-compress it at the other end.
To be more specific I have a site with an extremely long set of
parameters in the URL, I want to compress these and use one very short
parameter which I can then un-compress and read them all back. I have
already taken other steps to reduce the length.
To through a bit more information in the pot, the string is made up of
[a-z0-9] and the compressed string can use any of the UTF-8 chars.
Our server side code is J2EE Java and I will be using this for the
compression/un-compression.
I have tried Gzip, and briefly looked at crypto triple des ecryption
not because i want to make this secure but because for some reason i
thought it might give me a short encrypted string.