Java Base64 Encode toBase64String(byte[] array)

Here you can find the source of toBase64String(byte[] array)

Description

Encodes given array as Base64 with ISO-8859-1 character set.

License

Open Source License

Parameter

Parameter Description
array byte array to encode

Return

encoded array

Declaration

public static String toBase64String(byte[] array) 

Method Source Code

//package com.java2s;
/*/*from  www. j  a v  a  2  s  . c  o m*/
 * Copyright (C) 2017 Vektorsoft Ltd. (http://www.vektorsoft.com)
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.util.Base64;

public class Main {
    /**
     * Encodes given array as Base64 with ISO-8859-1 character set.
     * 
     * @param array byte array to encode
     * @return encoded array
     */
    public static String toBase64String(byte[] array) {
        return Base64.getEncoder().encodeToString(array);
    }
}

Related

  1. toBase64(int x)
  2. toBase64(long num)
  3. toBase64(long value)
  4. toBase64(String value)
  5. toBase64Impl(byte[] data)
  6. toBase64String(byte[] data)