Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a base-64 decoder and encoder for a string in Android?

share|improve this question

4 Answers

up vote 9 down vote accepted

See android.util.Base64

It seems that this was added in API version 8 or android 2.2 so it will not be available on the older platforms.

But the source of it is at android/util/Base64.java so if needed one could just copy it unchanged for older versions.

share|improve this answer

This is an example of how to use the Base64 class to encode and decode a simple String value.

    // String to be encoded with Base64
    String text = "Test";
    // Sending side
    byte[] data = null;
    try {
        data = text.getBytes("UTF-8");
    } catch (UnsupportedEncodingException e1) {
    e1.printStackTrace();
    }
    String base64 = Base64.encodeToString(data, Base64.DEFAULT);

    // Receiving side
    byte[] data1 = Base64.decode(base64, Base64.DEFAULT);
    String text1 = null;
    try {
        text1 = new String(data1, "UTF-8");
    } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
    }

This excerpt can be included in an Android activity.

share|improve this answer

Here is a simple method I was going to use until I realized that this is only supported in Android API 8+:

public String toBase64fromString(String text) 
{
    return Base64.encodeToString(text.getBytes(), Base64.DEFAULT);
}
share|improve this answer

base64 decode this may help all of us.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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