MultipartFile 保存为文件
时间: 2023-07-28 13:07:05 浏览: 73
要将`MultipartFile`保存为文件,可以使用`transferTo()`方法将文件写入磁盘。下面是一个示例:
```java
@RequestMapping(value = "/upload", method = RequestMethod.POST)
public String upload(@RequestParam("file") MultipartFile file) {
// 检查文件是否为空
if (file.isEmpty()) {
return "uploadFailure"; // 上传失败页面
}
// 处理文件上传
try {
byte[] bytes = file.getBytes();
// 将文件保存到本地或上传到云存储
Path path = Paths.get("path/to/save/file");
Files.write(path, bytes);
return "uploadSuccess"; // 上传成功页面
} catch (IOException e) {
e.printStackTrace();
return "uploadFailure"; // 上传失败页面
}
}
```
在上面的代码中,`Paths.get()`方法用于创建一个`Path`对象,指定文件的保存路径。`Files.write()`方法用于将文件写入磁盘。
注意:在使用`MultipartFile`接收文件时,需要确保表单的`enctype`属性设置为`multipart/form-data`,否则无法正常上传文件。
阅读全文