当前位置: 首页 > article >正文

transferto转换文件类型报错

问题

上传文件到服务器,直接把File对象当作transferto()方法的参数;但是使用postman请求报错。报错信息如下:

java.io.FileNotFoundException: C:\Users\xxxxx\AppData\Local\Temp\盘符:\fileUpload\xxxxx.jpg(文件名、目录名或卷标语法不正确。),后面的路径是我保存的路径,前面的路径是transferto()方法自己加的。

之前的代码

截取部分上传文件的代码代码

    if(!file.isEmpty()) {
        String filePath = request.getSession().getServletContext().getRealPath("/") + "upload/";
        File dir = new File(filePath);
        if(! dir.exists()) {
            dir.mkdir();
        }

        String path = filePath + file.getOriginalFilename();
        File tempFile = null;
        try {
            tempFile =  new File(path);

            file.transferTo(tempFile);
        }

代码解释

1)取得上产文件的path,加上upload 形成如: app directory/application/upload的路径并生成一个文件夹(没有的话)

2)在该文件夹下生成一个和上传文件同名的文件
3)将上传文件MultiPartFile transferto 到上述文件中

springBoot本地测试是没有问题的(内嵌tomcat server),但打包上传到服务器,出现了找不到文件的错误。

这个错误是file.transferTo(tempFile); 造成的,因为transferTo方法会默认在tempFile前添加一个新的路径,是一个没用的路径。这样一来,tempFile path是有的,但前边加一个路径后,就造成了找不到文件的错误。

解决方案

这里的解决办法是不用transferTo()方法,改用org.apache.commons.io.FileUtils工具类中的方法

首先在maven的pom.xml中添加commons-io commons-io 2.5的依赖
然后之前的代码改成:

    if(!file.isEmpty()) {
        String filePath = request.getSession().getServletContext().getRealPath("/") + "upload/";
        File dir = new File(filePath);
        if(! dir.exists()) {
            dir.mkdir();
        }

        String path = filePath + file.getOriginalFilename();
        File tempFile = null;
        try {
            tempFile =  new File(path);
                    FileUtils.copyInputStreamToFile(file.getInputStream(), tempFile);

这样就将multipartfile正常转到tempFile中了。

最一开始的代码如果传给transferto()方法一个File对象他会在前面加一个默认路径在你的File对象路径前面,transferto没有不带参的方法。上面那个方法直接导入依赖jar包,然后再把File对象的路径传入到FileUtils.copyInputStreamToFile(file.getInputStream(), tempFile)方法中。

其他解决方案

transferto()方法还有一个

default void transferTo(Path dest) throws IOException, IllegalStateException {
FileCopyUtils.copy(this.getInputStream(), Files.newOutputStream(dest));
} 

还有一个这个方法,这个方法感觉跟上面的那个方法一样,我就研究了一下Path 引用类型

Path path1 = Paths.get(D:,“fileUpload”,fileName);
if (true){
//上传文件
System.out.println("=============="+dest);
file.transferTo(path1); //保存文件
//FileUtils.copyInputStreamToFile(file.getInputStream(), dest);
System.out.print(“文件的保存路径”+path1+"\n");
}

Path 引用类型有一个get(参数)方法这个方法可以获取路径,就可以把上传的路径写了进去,结果也可以上传文件。


http://www.kler.cn/a/273558.html

相关文章:

  • 代码笔录1
  • 基于 RNN 的语言模型
  • ElasticSearch学习篇16_《检索技术核心20讲》进阶篇之空间检索
  • 数字信号处理Python示例(5)使用实指数函数仿真PN结二极管的正向特性
  • 【力扣 + 牛客 | SQL题 | 每日5题】牛客SQL热题216,217,223
  • 个人对Numpy中transpose()函数的理解
  • Auto-DataProcessing:一组让制作数据集变轻松的脚本
  • 显示android设备所以已安装App 可点击启动、搜索
  • Halcon 点云处理流程(点云分割、连通筛选、模型位姿变换、三角化)
  • Linux命令-dhclient命令(动态获取或释放IP地址)
  • 前后端分离项目部署服务器教程--实践成功
  • 【简历篇】如何写简历(二)简历元素、技巧、规范、三省
  • Git——GitHub远端协作详解
  • Apache Doris 如何基于自增列满足高效字典编码等典型场景需求
  • 在Hive中使用Python编写的UDF函数
  • 全量知识系统 微服务及特征复数空间和立体逻辑方阵的设想及百度AI回复
  • MySql安装与卸载—我耀学IT
  • 小程序云开发(十六):JavaScript基础
  • 浅谈Java 编程语言
  • 全量知识系统“全基因序列”程序构想及SmartChat的回复
  • 2025张宇考研数学基础36讲,视频百度网盘+PDF
  • 【Pandas】(1)安装与Series
  • 研究人员发现 OpenAI ChatGPT、Google Gemini 的漏洞
  • ocp考试是中文还是英文?ocp认证好考吗
  • Studio 3T 2024.2 (macOS, Linux, Windows) - MongoDB 的专业 GUI、IDE 和 客户端,支持自然语言查询
  • Ubuntu Desktop - lock screen (锁屏)