当前位置:   article > 正文

Base64工具类

base64工具类
package com.jsy.basic.util.utils;

import org.apache.commons.io.IOUtils;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.entity.ContentType;

import org.springframework.mock.web.MockMultipartFile;
import org.springframework.util.StringUtils;
import org.springframework.web.multipart.MultipartFile;


import java.io.*;
import java.util.Base64;
import java.util.Base64.Decoder;
import java.util.Base64.Encoder;
import java.util.HashMap;
import java.util.Map;

/**
 * @author chq459799974
 * @description Base64工具类
 * @since 2021-01-29 10:06
 **/
public class Base64Util {
	
	/**
	* @Description: base64转文件
	 * @Param: [file64Str, outPath]
	 * @Return: boolean
	 * @Author: chq459799974
	 * @Date: 2021/1/29
	**/
	public static boolean base64StrToFile(String file64Str, String outPath) {
		if (file64Str == null)
			return false;
		Decoder decoder = Base64.getDecoder();
		try {
			// 解密
			byte[] b = decoder.decode(file64Str);
			// 处理数据
			for (int i = 0; i < b.length; ++i) {
				if (b[i] < 0) {
					b[i] += 256;
				}
			}
			// 文件夹不存在则自动创建
			File tempFile = new File(outPath);
			if (!tempFile.getParentFile().exists()) {
				tempFile.getParentFile().mkdirs();
			}
			OutputStream out = new FileOutputStream(tempFile);
			out.write(b);
			out.flush();
			out.close();
			return true;
		} catch (Exception e) {
			return false;
		}
	}
	
	/**
	* @Description: base64转MultipartFile
	 * @Param: [base64Str]
	 * @Return: org.springframework.web.multipart.MultipartFile
	 * @Author: chq459799974
	 * @Date: 2021-08-02
	**/
	public static MultipartFile base64StrToMultipartFile(String base64Str){
		if (StringUtils.isEmpty(base64Str)){
			return null;
		}
		Decoder decoder = Base64.getDecoder();
		MultipartFile multipartFile = null;
		try {
			// 解密
			byte[] b = decoder.decode(base64Str);
			multipartFile = new MockMultipartFile("file.png", b);
		} catch (Exception e) {
			e.printStackTrace();
		}
		return multipartFile;
	}
	
	/**
	* @Description: 文件转base64(路径入参)
	 * @Param: [filePath]
	 * @Return: java.lang.String
	 * @Author: chq459799974
	 * @Date: 2021/1/29
	**/
	public static String fileToBase64Str(String filePath) {
		InputStream inputStream;
		byte[] data = null;
		try {
			inputStream = new FileInputStream(filePath);
			data = new byte[inputStream.available()];
			inputStream.read(data);
			inputStream.close();
		} catch (IOException e) {
			e.printStackTrace();
		}
		// 加密
		Encoder encoder = Base64.getEncoder();
		return encoder.encodeToString(data);
	}
	
	/**
	 * @Description: 文件转base64(文件入参)
	 * @Param: [file]
	 * @Return: java.lang.String
	 * @Author: chq459799974
	 * @Date: 2021/1/29
	 **/
	public static String fileToBase64Str(MultipartFile file) {
		InputStream inputStream;
		byte[] data = null;
		try {
			inputStream = file.getInputStream();
			data = new byte[inputStream.available()];
			inputStream.read(data);
			inputStream.close();
		} catch (IOException e) {
			e.printStackTrace();
		}
		// 加密
		Encoder encoder = Base64.getEncoder();
		return encoder.encodeToString(data);
	}
	
	/**
	* @Description: byte转Base64
	 * @Param: [data]
	 * @Return: java.lang.String
	 * @Author: chq459799974
	 * @Date: 2021/1/29
	**/
	public static String byteToBase64(byte[] data){
		// 加密
		Encoder encoder = Base64.getEncoder();
		return encoder.encodeToString(data);
	}
	
	/**
	* @Description: 网络文件转Base64
	 * @Param: [netPicUrl]
	 * @Return: java.lang.String
	 * @Author: chq459799974
	 * @Date: 2021/1/29
	**/
	public static String netFileToBase64(String netFileUrl){
		HttpGet httpGet = MyHttpUtils.httpGetWithoutParams(netFileUrl);
		byte[] data = (byte[]) MyHttpUtils.exec(httpGet,MyHttpUtils.ANALYZE_TYPE_BYTE);
		return byteToBase64(data);
	}
	
	public static void main(String[] args) {
		String base64Str = fileToBase64Str("E:/video/VID_20210223_134106.mp4");
		System.out.println(base64Str);
		boolean b = base64StrToFile(base64Str, "E:/video/转出结果.mp4");
		System.out.println(b);
	}
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号