Skip to content

Instantly share code, notes, and snippets.

@caot
Created August 20, 2015 00:03
Show Gist options
  • Select an option

  • Save caot/25be8394fdebadfc14a8 to your computer and use it in GitHub Desktop.

Select an option

Save caot/25be8394fdebadfc14a8 to your computer and use it in GitHub Desktop.
java byte[] to String
import javax.xml.bind.DatatypeConverter;
public static String base64EncodedString(byte[] bytes) {
return DatatypeConverter.printBase64Binary(bytes);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment