Here you can find the source of base642byte(String base64)
public static byte[] base642byte(String base64) throws IOException
//package com.java2s; //License from project: Apache License import sun.misc.BASE64Decoder; import java.io.IOException; public class Main { public static byte[] base642byte(String base64) throws IOException { BASE64Decoder base64Decoder = new BASE64Decoder(); return base64Decoder.decodeBuffer(base64); }//w ww .j a v a2 s . c o m }