public class Base64FileUtil {
private static String targetFilePath = "D:\\B2bic\\test.txt";
private static Logger logger = LoggerFactory.getLogger(Base64FileUtil.class);
/* public static void main(String[] args) throws Exception {
String fileStr = getFileStr("D:\\B2bic\\nc312021ca.key");
Pattern p = Pattern.compile("\\s*|\t");
Matcher m2 = p.matcher(fileStr);
fileStr = m2.replaceAll("");
System.out.println( fileStr);
System.out.println(generateFile(fileStr, targetFilePath));
System.out.println("end");
}*/
/**
* 文件转化成base64字符串
* 将文件转化为字节数组字符串,并对其进行Base64编码处理
*/
public static String getFileStr(String filePath) {
InputStream in = null;
byte[] data = null;
// 读取文件字节数组
try {
in = new FileInputStream(filePath);
data = new byte[in.available()];
in.read(data);
in.close();
} catch (IOException e) {
logger.warn("文件转化成base64字符串:{}",e);
} finally {
try {
in.close();
} catch (IOException e) {
logger.warn("文件转化成base64字符串:{}",e);
}
}
// 对字节数组Base64编码
BASE64Encoder encoder = new BASE64Encoder();
// 返回 Base64 编码过的字节数组字符串
return encoder.encode(data);
}
/**
* base64字符串转化成文件,可以是JPEG、PNG、TXT和AVI等等
*
* @param base64FileStr
* @param filePath
* @return
* @throws Exception
*/
public static boolean generateFile(String base64FileStr, String filePath) throws Exception {
// 数据为空
if (base64FileStr == null) {
System.out.println(" 不行,oops! ");
return false;
}
BASE64Decoder decoder = new BASE64Decoder();
// Base64解码,对字节数组字符串进行Base64解码并生成文件
byte[] byt = decoder.decodeBuffer(base64FileStr);
for (int i = 0, len = byt.length; i < len; ++i) {
// 调整异常数据
if (byt[i] < 0) {
byt[i] += 256;
}
}
OutputStream out = null;
InputStream input = new ByteArrayInputStream(byt);
try {
// 生成指定格式的文件
out = new FileOutputStream(filePath);
byte[] buff = new byte[1024];
int len = 0;
while ((len = input.read(buff)) != -1) {
out.write(buff, 0, len);
}
} catch (IOException e) {
logger.warn("文件转化成base64字符串:{}",e);
} finally {
out.flush();
out.close();
}
return true;
}
}
文件转与base64字符串互转
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- Swift - 将图片、文件转成Base64编码字符串(Base64加密、解密) 有时上传或者发送图片、文件时,需...
- base64是绝大多数linux系统自带的程序,可以轻松快速把二进制文件转换成base64字符串,或者反之转换回来...
- 一些工具方法,你可以写成Category,也可以直接复制过去当类方法,不用苦苦的去搜索了