Answers for "encode and decode android studio base64"

0

how to use base64.getdecoder() android

// HazaaZOOZ - java - how to use base64.getdecoder() android studio - java

import android.util.Base64;

...

String testValue = "Hello, world!";

byte[] encodeValue = Base64.encode(testValue.getBytes(), Base64.DEFAULT);
byte[] decodeValue = Base64.decode(encodeValue, Base64.DEFAULT);

Log.d("ENCODE_DECODE", "defaultValue = " + testValue);
Log.d("ENCODE_DECODE", "encodeValue = " + new String(encodeValue));
Log.d("ENCODE_DECODE", "decodeValue = " + new String(decodeValue));
Posted by: Guest on January-12-2021

Code answers related to "encode and decode android studio base64"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language