Other way to encode byte[]
to String
and decode String
to byte[]
without using Base64.
Because when I encode a byte[]
to String and then I compress the String
using LZW. I can't decode it back to byte[]
using Base64. Is there an encoder or decoder which can keep decode a String
although the String
has modified by LZW?