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.
|
|
No need to use commons--Sun ships a base64 encoder with Java. You can import it as such:
And then use it like this:
Where EDIT: Who knew this would be the most controversial answer I'd ever post? I do know that sun.* packages are not supported or guaranteed to continue existing, and I do know about Commons and use it all the time. However, the poster asked for a class that that was "included with Sun Java 6," and that's what I was trying to answer. I agree that Commons is the best way to go in general. |
||||||||||||||||||
|
|
|
As an alternative to sun.misc.BASE64Decoder or non-core libraries, look at javax.mail.internet.MimeUtility.decode(). example : Encode/Decode to/from Base64 |
||
|
|
|
Specifically in Commons Codec: class |
||||
|
|
|
|
||||||||||||||||
|
