文件或目录损坏且无法读取方法 input上传文件获取内容
这些天忙着刷题,又怕遗忘了spring boot,所以抽出一点时间折腾折腾,加深点印象 。
spring boot 的文件上传与 spring mvc 的文件上传基本一致,只需注意一些配置即可 。
环境要求: Spring Boot v1.5.1.RELEASE + jdk1.7 + myeclipse
1).引入thymeleaf,支持页面跳转
<!– 添加thymeleaf –>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
- 1
- 2
- 3
- 4
- 5
<!DOCTYPE html>
<html>
<head>
<title>uploadimg.html</title>
<meta name=”keywords” content=”keyword1,keyword2,keyword3″></meta>
<meta name=”description” content=”this is my page”></meta>
<meta name=”content-type” content=”text/html; charset=UTF-8″></meta>
<!–<link rel=”stylesheet” type=”text/css” href=https://www.cnfyg.com/shcs/”./styles.css”>–>
【文件或目录损坏且无法读取方法 input上传文件获取内容】</head>
<body>
<form enctype=”multipart/form-data” method=”post” action=”/testuploadimg”>
图片<input type=”file” name=”file”/>
<input type=”submit” value=https://www.cnfyg.com/shcs/”上传”/>
</form>
</body>
</html>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
//跳转到上传文件的页面
@RequestMapping(value=https://www.cnfyg.com/shcs/”/gouploadimg”, method = RequestMethod.GET)
public String goUploadImg() {
//跳转到 templates 目录下的 uploadimg.html
return “uploadimg”;
}
//处理文件上传
@RequestMapping(value=https://www.cnfyg.com/shcs/”/testuploadimg”, method = RequestMethod.POST)
public @ResponseBody String uploadImg(@RequestParam(“file”) MultipartFile file,
HttpServletRequest request) {
String contentType = file.getContentType();
String fileName = file.getOriginalFilename();
/*System.out.println(“fileName–>” + fileName);
System.out.println(“getContentType–>” + contentType);*/
String filePath = request.getSession().getServletContext().getRealPath(“imgupload/”);
try {
FileUtil.uploadFile(file.getBytes(), filePath, fileName);
} catch (Exception e) {
// TODO: handle exception
}
//返回json
return “uploadimg success”;
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
public static void uploadFile(byte[] file, String filePath, String fileName) throws Exception {
File targetFile = new File(filePath);
if(!targetFile.exists()){
targetFile.mkdirs();
}
FileOutputStream out = new FileOutputStream(filePath+fileName);
out.write(file);
out.flush();
out.close();
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
文章插图
上传文件后:
文章插图
在应用的 src/main/webapp/imgupload 目录下
文章插图
6).如果上传的文件大于 1M 时,上传会报错文件太大的错误,在 application.properties 中设置上传文件的参数即可
spring.http.multipart.maxFileSize=100Mb
spring.http.multipart.maxRequestSize=100Mb
推荐阅读
- 作文唯美佳句摘抄大全
- 手机版压缩文件的app推荐 压缩工具软件有哪些
- tencent files是什么文件
- 一键清空wps云文档 wps云文档怎么删除所有文件
- u盘单个文件大小限制 超过4g的文件怎么存放在u盘里面
- win10控制面板邮件配置文件 win10outlook邮箱设置在哪里
- spark处理超大文件方法 spark读取hdfs文件规则
- 九牛一毛开过什么生肖或数字
- 鸡爪做苦了怎么补救
- 5G消息终于要来了 5G消息或于10月中下旬全国试商用