Base64 工具类

来源:互联网 发布:英译汉用哪个软件好 编辑:程序博客网 时间:2024/04/28 01:46
package com.hisun.itoppay.atc;


import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import org.bouncycastle.util.encoders.Base64;


public class Base64Utils
{
  private static final int CACHE_SIZE = 1024;


  public static byte[] decode(String base64)
    throws Exception
  {
    return Base64.decode(base64.getBytes());
  }


  public static String encode(byte[] bytes)
    throws Exception
  {
    return new String(Base64.encode(bytes));
  }


  public static String encodeFile(String filePath)
    throws Exception
  {
    byte[] bytes = fileToByte(filePath);
    return encode(bytes);
  }


  public static void decodeToFile(String filePath, String base64)
    throws Exception
  {
    byte[] bytes = decode(base64);
    byteArrayToFile(bytes, filePath);
  }


  public static byte[] fileToByte(String filePath)
    throws Exception
  {
    byte[] data = new byte[0];
    File file = new File(filePath);
    if (file.exists()) {
      FileInputStream in = new FileInputStream(file);
      ByteArrayOutputStream out = new ByteArrayOutputStream(2048);
      byte[] cache = new byte[1024];
      int nRead = 0;
      while ((nRead = in.read(cache)) != -1) {
        out.write(cache, 0, nRead);
        out.flush();
      }
      out.close();
      in.close();
      data = out.toByteArray();
    }
    return data;
  }


  public static void byteArrayToFile(byte[] bytes, String filePath)
    throws Exception
  {
    InputStream in = new ByteArrayInputStream(bytes);
    File destFile = new File(filePath);
    if (!destFile.getParentFile().exists()) {
      destFile.getParentFile().mkdirs();
    }
    destFile.createNewFile();
    OutputStream out = new FileOutputStream(destFile);
    byte[] cache = new byte[1024];
    int nRead = 0;
    while ((nRead = in.read(cache)) != -1) {
      out.write(cache, 0, nRead);
      out.flush();
    }
    out.close();
    in.close();
  }
}
原创粉丝点击