Java Base64 和 File 之间互转

1、Base64 转 File

public File base64ToFile(String base64, String filePath) {
    File file = new File(filePath);
    byte[] buffer;
    try {
        BASE64Decoder base64Decoder = new BASE64Decoder();
        buffer = base64Decoder.decodeBuffer(base64);
        FileOutputStream out = new FileOutputStream(filePath);
        out.write(buffer);
        out.close();
    } catch (Exception e) {
        Log.e("TAG", "异常信息:" + e.getMessage());
    }
    return file;
}

2、File 转 Base64

public String fileToBase64(String filePath) {
	File file = new File(filePath);
	FileInputStream inputFile;
	try {
		inputFile = new FileInputStream(file);
		byte[] buffer = new byte[inputFile.available()];
		inputFile.read(buffer);
		inputFile.close();
		BASE64Encoder base64Encoder = new BASE64Encoder();
		Log.i("encodeFileToBase64", "encode = " + base64Encoder.encode(buffer));
		return base64Encoder.encode(buffer);
	} catch (Exception e) {
		Log.e("TAG", "异常信息:" + e.getMessage());
	}
	return "";
}

  • 4
    点赞
  • 26
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
Java中,可以使用以下代码将Base64字符串换为File文件: ```java import java.io.File; import java.io.FileOutputStream; import java.util.Base64; public class Base64ToFile { public static File base64ToFile(String base64, String filePath) { File file = new File(filePath); try { byte\[\] buffer = Base64.getDecoder().decode(base64); FileOutputStream out = new FileOutputStream(file); out.write(buffer); out.close(); } catch (Exception e) { e.printStackTrace(); } return file; } } ``` 这个方法接受两个参数,一个是Base64字符串,另一个是要保存文件的路径。它会将Base64字符串解码为字节数组,然后将字节数组写入到指定路径的文件中。最后,它会返回生成的文件对象。 请注意,这里使用了Java 8中的Base64类来进行Base64解码。如果你使用的是Java 7或更早的版本,可以使用Apache Commons Codec库或其他Base64解码库来替代。 希望这个代码能够帮助到你! #### 引用[.reference_title] - *1* *2* [Java Base64File 之间互转](https://blog.csdn.net/victor_E_N_01185/article/details/130274460)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item] - *3* [JAVABase64File文件](https://blog.csdn.net/asdfghj253/article/details/107974106)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

却染人间愁

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值