Java Base64 Decode Base64Decode(String str)

Here you can find the source of Base64Decode(String str)

Description

Base Decode

License

Open Source License

Declaration

public static byte[] Base64Decode(String str) throws IOException 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import java.io.IOException;

import sun.misc.BASE64Decoder;

public class Main {

    public static byte[] Base64Decode(String str) throws IOException {
        return new BASE64Decoder().decodeBuffer(str);
    }//from  w ww.java 2s. c o  m
}

Related

  1. base64Decode(String s)
  2. base64Decode(String s)
  3. base64decode(String s)
  4. base64Decode(String str)
  5. base64Decode(String str)
  6. base64Decode(String str)
  7. base64decode(String str)
  8. base64Decode(String string)
  9. base64decode(String string)