Advertisement
Scroolik

Untitled

Mar 31st, 2013
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. import android.util.Base64;
  2. import java.io.UnsupportedEncodingException;
  3.  
  4. public class HelloWorldApp {
  5. public static void main(String[] args) {
  6. //System.out.println("Hello World!"); // Display the string.
  7. byte[] decoded = Base64.decode("YWJjZGVmZw==", 0);
  8. try {
  9. System.out.println(new String(decoded, "UTF-8") + "\n");
  10. } catch (UnsupportedEncodingException localUnsupportedEncodingException) {}
  11.  
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement