base64转图片的时候Can't read input file!

简介: 如果不去掉编码中的图片头信息,就会报Can't read input file!。一开始还以为是文件路径格式有问题,然后看了看我之前用的,就有一个区别就是没有去头信息。

如果不去掉编码中的图片头信息,就会报Can't read input file!。

一开始还以为是文件路径格式有问题,然后看了看我之前用的,就有一个区别就是没有去头信息。

// 去掉base64编码中的图片头信息
String base64 = base.split(",")[1];
System.out.println(base64);
try {
  System.out.println("进来");
  Base64Utils.GenerateImage(base64, "D:/temp.jpg");
} catch (IOException e) {
  // TODO Auto-generated catch block
  e.printStackTrace();
}
相关文章
input type=file过滤图片
input type=file过滤图片
60 0
|
编解码
av_read_frame返回值为-5 Input/output error
av_read_frame返回值为-5 Input/output error
161 0
UE Operation File [ Read / Write ] DTOperateFile 插件说明
UE Operation File [ Read / Write ] DTOperateFile 插件说明
81 0
|
算法 开发者
关于 加载图片"Corrupt JPEG data: premature end of data segment" 的解决方法
关于 加载图片"Corrupt JPEG data: premature end of data segment" 的解决方法
关于 加载图片"Corrupt JPEG data: premature end of data segment" 的解决方法
ADI
|
JavaScript 前端开发 API
[记录] input[type=file]属性详解
[记录] input[type=file]属性详解
ADI
323 0
Can‘t read file : End of file found 文件:txn_current、current svn无法正常读取文件
Can‘t read file : End of file found 文件:txn_current、current svn无法正常读取文件
Can‘t read file : End of file found 文件:txn_current、current svn无法正常读取文件
|
测试技术
[20171203]关于raw类型.txt
[20171203]关于raw类型.txt --//从来没有关注raw类型,昨天看https://blog.dbi-services.com/doag-2017-avg_row_len-with-virtual-columns/ --//我第一次接触一个应用使用sys_guid()函数生成键值,不过对方使用-分割,36位字符串长度.
1064 0
|
应用服务中间件 Linux PHP