vote up 4 vote down star
1

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.

flag

4 Answers

vote up 1 vote down check

No need to use commons--Sun ships a base64 encoder with Java. You can import it as such:

import sun.misc.BASE64Decoder;

And then use it like this:

BASE64Decoder decoder = new BASE64Decoder();
byte[] decodedBytes = decoder.decodeBuffer(encodedBytes);

Where encodedBytes is either a java.lang.String or a java.io.InputStream. Just beware that the sun.* classes are not "officially supported" by Sun.

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.

link|flag
Thanks, this is exactly what I was looking for – Ryan P Jan 22 '09 at 16:07
2  
-1 - this is internal Sun code, is NOT part of J2SE (it, not portable), and may disappear at any time -- Sun explicitly says to NOT use their internal libraries in user code – kdgregory Jan 22 '09 at 16:08
1  
True, hence my disclaimer at the end. – MattK Jan 22 '09 at 16:11
1  
This is for a short term project and is just a experiment and don't want to go through the process of approval for a new library. So this is the correct answer to this question. – Ryan P Jan 22 '09 at 16:23
1  
In a research department where that code is marked as experiment and when it is marked always gets scrapped it is the correct decision. – Ryan P Jan 22 '09 at 20:17
show 5 more comments
vote up 4 vote down

As an alternative to sun.misc.BASE64Decoder or non-core libraries, look at javax.mail.internet.MimeUtility.decode().

example : Encode/Decode to/from Base64

link|flag
javax.mail is not part of the core. – Adam Goode Oct 15 at 16:23
vote up 6 vote down

Specifically in Commons Codec: class Base64 to decode(byte[] array) or encode(byte[] array)

link|flag
1  
You can link the text 'Commons Codec' to the project page. That way this answer would be better than Kevin's :) – Toto Jun 2 at 17:19
vote up 16 vote down

Commons codec

link|flag
1  
I would like to only have to use the core java libraries – Ryan P Jan 22 '09 at 16:03
1  
+1 - the core Java libraries don't cover everything that you might possibly do; rather than reinvent the wheel, pull in code that's already written and has a high usage – kdgregory Jan 22 '09 at 16:05
1  
If you want to do it in the core Java library, download the source of Commons codec and see how they do it. It's open source. – Bill the Lizard Jan 22 '09 at 16:07
1  
This is the correct answer for the original question before I edited to include the core Java libraries. As I said in the accepted answer this is for an experiment and have to get approval for a new library and is not worth the time if the experiment does not get approved as a real project. – Ryan P Jan 22 '09 at 16:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.