vote up 1 vote down star

Possible Duplicate:
Decode Base64 data in java

Thanks to everyone in advance,

I am aware of http://commons.apache.org/codec/api-release/org/apache/commons/codec/binary/Base64.html etc, can anyone point to me another option preferably one that does not require me to use external libraries.

Thanks,

Sam

flag
1  
You might find some answers here: stackoverflow.com/questions/469695/… – Jonik Jul 6 at 22:07
I think the link above provides you with a solution for Base64 but not QP... you could probably piece the information together from multiple answers on Stackoverflow. I don't believe this is a duplicate... – Jon Jul 7 at 4:24
The thing to do in cases like this, is to ask a question that isn't already answered. So, post a question asking specifically for a library that'll en/decode quoted-printable. If you then accept Jon's, the combination of this and the linked question will provide a single solution for you or anyone wanting both. – Shog9 Jul 9 at 1:44

closed as exact duplicate by dfa, Emil H, Fabian Steeg, laalto, Shog9 Jul 9 at 1:41

4 Answers

vote up 0 vote down

Just wanted to answer this with some more information as people here seem to have missed your requirement for a utility for both Base64 and Quoted Printable.

Take a look at MimeUtility in Javamail here:

http://java.sun.com/products/javamail/javadocs/javax/mail/internet/MimeUtility.html

That provides encoding/decoding for both Base64 and Quoted Printable, amongst others, look at the decode method:

public static InputStream decode(InputStream is,
                                 String encoding) throws MessagingException

Commons Codec provides similar functionality in the form of QCodec and Base64, but no main method that I know of. Hope that helps.

link|flag
vote up 0 vote down

migbase64 is the fastest (according to their benchmark).

link|flag
vote up 0 vote down

if you use Sun's jvm you can use sun.misc.BASE64Encoder/Decoder but it's not Open Source

link|flag
vote up 1 vote down

Why not use one from iharder.net? It is fast and it is in public domain.

link|flag
Just curious: why would you recommend this over Commons Codec (which is, at least, more widely used)? – Jonik Jul 6 at 22:15
It is small and completely free of any licenses. Commons codec is more like an all-purpose library, and this tiny library does only one thing and does it very well. – Malcolm Jul 6 at 22:23

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