Here you can find the source of base64decode(String base64Content)
Parameter | Description |
---|---|
base64Content | a parameter |
public static byte[] base64decode(String base64Content)
//package com.java2s; //License from project: Open Source License import javax.xml.bind.DatatypeConverter; public class Main { /**/*from w w w . ja v a2s.co m*/ * @param base64Content */ public static byte[] base64decode(String base64Content) { return DatatypeConverter.parseBase64Binary(base64Content); } }