I intend to send such a string (256bytes):
633a88d35a0f8fd172bd21158a03a8bb17ddc0acc6edb8ae19a9dbd1aa855b75319e540910fb70cf7bb51d608219dd4b387623f94262705a9c2c19332240e2a6d696d4cb896abf0101afae1aeebf3d6299675e0e67904e7a544de9e3e65fb9def9b0b047fb57a0b742226d602d386d9e2fe176a88837eddd0c77d6911d386c2e
via SMS through android, and the content should be within 1 message.
As you may know, the SMS has a limit of 160 bytes per message, I have tried using gzip in Java and then encode the compressed stuff with Base 64, but the compression ratio is not quite good.
Since the compressed data will be sent via SMS, there should be a encoding method to make the compressed string "transmittable".
Any ideas?
Thank you for any comments/answers!