Skip to content

Instantly share code, notes, and snippets.

@frgomes
Created July 28, 2017 12:39
  • Star 17 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save frgomes/fe3088794ce100b5ca74d7fd40123645 to your computer and use it in GitHub Desktop.
Scala - Base64 encode/decode
// Base64 encode
val text = "This is plaintext."
val bytesEncoded = java.util.Base64.getEncoder.encode(text.getBytes())
// Base64 decode
val textDecoded = new String(java.util.Base64.getDecoder.decode(bytesEncoded))
println(textDecoded)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment