Java XML Base64 Encode Decode encodeBase64(byte[] b)

Here you can find the source of encodeBase64(byte[] b)

Description

_more_

License

Open Source License

Parameter

Parameter Description
b _more_

Return

_more_

Declaration

public static String encodeBase64(byte[] b) 

Method Source Code

//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);
    }
}

Related

  1. decodeBase64(String b64data)
  2. decodeBase64(String base64)
  3. decodeBase64(String s)
  4. decodeBase64(String value)
  5. decompressFromBase64(String message)
  6. encodeBase64(byte[] bytes)
  7. encodeBASE64(byte[] data)
  8. encodeBase64(String input)
  9. encodeBase64(String stringValue)