Content-Type: application/octet-stream
-
Hi, how i decode a Content-Type: application/octet-stream ? (HTTPS - Android). only encrypted characters appear. Thanks
-
It means that when you try to convert the bytes (octet = bundle of 8 bits = a byte) to UTF8 or ASCII, since it was not encoded as UTF8 or ASCII in the first place it will output random stuff. You have to know which encoding the content originally had and decode accordingly.
-
@Ruri Thank you very much