SpringBoot实现单文件上传
作者:KevinYang-凯 时间:2023-10-01 21:43:42
SpringBoot实现单文件上传功能,供大家参考,具体内容如下
架构为springboot+thymeleaf,采用ajax方式提交
1. 页面testFile.html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>测试文件上传</title>
<script src="../static/jquery/jquery-2.1.1.min.js" th:src="@{/jquery/jquery-2.1.1.min.js}"></script>
<script type="text/javascript">
$(function () {
$("#upload1").click(function () {
var formData = new FormData();
formData.append("file", document.getElementById("file").files[0]);
$.ajax({
url: "/file/upload1",
type: "POST",
data: formData,
//必须false才会自动加上正确的Content-Type
contentType: false,
//必须false才会避开jquery对 formdata 的默认处理
//XMLHttpRequest会对 formdata 进行正确的处理
processData: false,
success: function (data) {
if (data.status == "true") {
alert("上传成功!");
}
if (data.status == "error") {
alert(data.msg);
}
},
error: function () {
alert("上传失败!");
}
});
});
});
</script>
</head>
<body>
<form method="POST" enctype="multipart/form-data" action="/file/upload1">
<fieldset>
<legend>单一文件上传实例:</legend>
文件1:<input type="file" name="file" id="file"/><br/>
<input type="button" id="upload1" value="上传"/><br/>
</fieldset>
</form>
</body>
</html>
2. FileController.java
package com.stormkai.controller;
import java.io.File;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.multipart.MultipartFile;
import lombok.extern.slf4j.Slf4j;
@Controller
@RequestMapping("/file")
@Slf4j
public class FileController {
@GetMapping("/index")
public String index() {
return "testFile";
}
@PostMapping("/upload1")
@ResponseBody
public Map<String, Object> upload1(@RequestParam("file") MultipartFile file, HttpServletRequest request) throws IOException {
log.info("系统路径={}",request.getSession().getServletContext().getRealPath(""));
String path = "F:\\uploadfile\\";
if(!new File(path).exists()){
new File(path).mkdirs();
}
file.transferTo(new File(path + file.getOriginalFilename()));
Map<String, Object> result = new HashMap<>();
result.put("status", "true");
result.put("data", null);
return result;
}
}
来源:https://blog.csdn.net/stormkai/article/details/89450646
标签:SpringBoot,上传
0
投稿
猜你喜欢
Android仿QQ空间动态界面分享功能
2023-11-13 11:03:58
android studio 安装完成ButterKnife插件却无法使用(解决方案)
2023-03-14 17:54:58
mybatis-plus 如何使用雪花算法ID生成策略
2023-04-06 07:15:38
jvm垃圾回收之GC调优工具分析详解
2023-08-17 12:40:20
Android列表实现(2)_游标列表案例讲解
2022-11-15 16:49:55
Java使用fill()数组填充的实现
2022-02-06 15:03:33
Android自定义TextView跑马灯效果
2023-08-07 01:14:57
java实现给图片加铺满的网格式文字水印
2023-07-30 05:22:12
IDEA解决src和resource下创建多级目录的操作
2023-03-24 07:05:37
C#中一些你可能没用过的调试窗口的方法
2022-08-07 09:01:16
js中去除字符串中所有的html标签代码实例
2023-03-24 16:23:36
Jersey Restful接口如何获取参数的问题
2023-10-29 14:44:16
Fluent Mybatis零xml配置实现复杂嵌套查询
2022-02-03 19:34:32
C#基础 延迟加载介绍与实例
2023-07-24 19:16:14
JAVA实现简单系统登陆注册模块
2021-11-05 05:41:50
分析ABA问题的本质及其解决办法
2021-12-20 13:59:26
SpringBoot+JSON+AJAX+ECharts+Fiddler实现前后端分离开发可视化
2021-11-12 14:49:17
Java中的动态和静态编译实例详解
2021-07-30 15:25:10
spring cloud gateway跨域全局CORS配置方式
2021-11-02 01:09:00
Android实现计时与倒计时的常用方法小结
2023-10-28 07:18:02