I have an image that is Base64 encoded. What is the best way to decode that in Java? Hopefully using only the libraries included with Sun Java 6.
相关问题
- Views base64 encoded blob in HTML with PHP
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
As an alternative to
sun.misc.BASE64Decoder
or non-core libraries, look atjavax.mail.internet.MimeUtility.decode()
.Link with full code: Encode/Decode to/from Base64