1.

What are the types of Base64 encoding in Java?

Answer»

The following are the TYPES of Base64 ENCODING:

  • Simple: The OUTPUT is mapped to a set of characters lying in A-Za-z0-9+/.
  • URL: The output is mapped to set of characters lying in A-Za-z0-9+_.
  • MIME: The output is mapped to MIME friendly FORMAT. It is represented in lines of no more than 76 characters each, and uses a carriage return '\r' followed by a linefeed '\n' as the line separator.


Discussion

No Comment Found