I have to download an arbitrarily large file in base64 in a device with limited RAM memory in Java.
How do I download a file in base64 efficiently? Is it possible to get sequential chunks of base64 and write them to the output as binary data?
A code or pseudo-code example would be much appreciated.
Note: I can't use external frameworks, but I have base64 decode and encode functions.