Here you can find the source of encodeBase64(byte[] b)
Parameter | Description |
---|---|
b | _more_ |
public static String encodeBase64(byte[] b)
//package com.java2s; /*/*from w ww .j a v a 2s. co m*/ * Copyright (c) 2008-2015 Geode Systems LLC * This Software is licensed under the Geode Systems RAMADDA License available in the source distribution in the file * ramadda_license.txt. The above copyright notice shall be included in all copies or substantial portions of the Software. */ public class Main { /** * _more_ * * @param b _more_ * * @return _more_ */ public static String encodeBase64(byte[] b) { return javax.xml.bind.DatatypeConverter.printBase64Binary(b); } }