vote up 0 vote down star

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

flag
1  
Why is this a wiki? – AnthonyWJones Sep 29 at 16:11
sorry ... i make a mistake. – apast Sep 29 at 16:34

5 Answers

vote up 1 vote down check

Take a look at Base64, commons-codec, etc.

Commons-code provides a very simple Base64 class to use.

You can't use a hash function as hashing functions are typically meant to be one-way only: i.e. given a MD5 or SHA1 hash, you should not be able to decode it to find out what the source message was.

link|flag
Really, hash functions are one-way. Thanks! And Past – apast Sep 29 at 16:30
vote up 0 vote down

It looks like someone is asking you to obfuscate username/password combinations. This is probably not a good idea, since it suggests security where there is none. You might as well implement a ROT13 encryption for this and use double ROT13 to decrypt.

link|flag
vote up 1 vote down

See iconv and mb_convert_encoding. For encoding, maybe consider base64_encode.

link|flag
vote up 0 vote down

if you have database ids for your identifiers as your names suggests, why not using this number as encoding ? (put it as string if you like).

You shouldn't hope to get better compression using compression algorithms as they all need some headers and the header size by itself is probably longer than your input string.

link|flag
I haven't a database for keys. The compression are not for data transfer reduction, but a simple and naive obfuscation of original data. Thank, And Past – apast Sep 29 at 16:20
vote up 1 vote down

You could use ZipOutputStream.

	ByteArrayOutputStream result = new ByteArrayOutputStream();
	new ZipOutputStream(result).write("myString".getBytes());
	byte[] bytes = result.toByteArray();

You just have to figure out the right string encoding. This case be done with a Base64 representation.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.