Java Base64 Convert to fromBase64String(String encoded)

Here you can find the source of fromBase64String(String encoded)

Description

Converts Base64 encoded string to byte array.

License

Open Source License

Parameter

Parameter Description
encoded a parameter

Declaration

public static byte[] fromBase64String(String encoded) 

Method Source Code

//package com.java2s;
/*// w w w .  j  a  v  a 2s  . c om
 * 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 {
    /**
     * Converts Base64 encoded string to byte array.
     * 
     * @param encoded
     * @return 
     */
    public static byte[] fromBase64String(String encoded) {
        return Base64.getDecoder().decode(encoded);
    }
}

Related

  1. fromBase64(String s)
  2. fromBase64(String str)
  3. fromBase64decodedImageToByte(String base64encoded)
  4. fromBase64Impl(String data)
  5. fromBase64String(String base64)
  6. fromBase64Url(String data)