实战项目-BASE64 编解码

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;


/***
 * BASE64 编解码
 */
public class ConvertBASE64 {

	/***
	 * 编码
	 * @param path 文件路径
	 * @return
	 * @throws Exception 异常
	 */
	 public static String encodeBase64File(String path) throws Exception {
		  File file = new File(path);
		  FileInputStream inputFile = new FileInputStream(file);
		  byte[] buffer = new byte[(int) file.length()];
		  inputFile.read(buffer);
		  inputFile.close();
		  return new sun.misc.BASE64Encoder().encode(buffer);
	 }

	/***
	 * 解码,并保存到文件
	 * @param base64Code
	 * @param targetPath
	 * @throws Exception
	 */
	 public static void decoderBase64File(String base64Code, String targetPath)
	   throws Exception {
		  byte[] buffer = new sun.misc.BASE64Decoder().decodeBuffer(base64Code);
		  FileOutputStream out = new FileOutputStream(targetPath);
		  out.write(buffer);
		  out.close();

	 }

	/***
	 * 保存到文件
	 * @param base64Code
	 * @param targetPath
	 * @throws Exception
	 */
	 public static void toFile(String base64Code, String targetPath) throws Exception {

		  byte[] buffer = base64Code.getBytes();
		  FileOutputStream out = new FileOutputStream(targetPath);
		  out.write(buffer);
		  out.close();
	 }



}
发布了5 篇原创文章 · 获赞 0 · 访问量 151

猜你喜欢

转载自blog.csdn.net/w_v007/article/details/105591285