Spring boot的上传图片功能实例详解
程序员文章站
2023-11-21 13:59:52
简介
spring boot是由pivotal团队提供的全新框架,其设计目的是用来简化新spring应用的初始搭建以及开发过程。该框架使用了特定的方式来进行配置,从而使开...
简介
spring boot是由pivotal团队提供的全新框架,其设计目的是用来简化新spring应用的初始搭建以及开发过程。该框架使用了特定的方式来进行配置,从而使开发人员不再需要定义样板化的配置。通过这种方式,spring boot致力于在蓬勃发展的快速应用开发领域(rapid application development)成为领导者。
特点
1. 创建独立的spring应用程序
2. 嵌入的tomcat,无需部署war文件
3. 简化maven配置
4. 自动配置spring
5. 提供生产就绪型功能,如指标,健康检查和外部配置
6. 绝对没有代码生成和对xml没有要求配置
下面一段代码给大家介绍spring boot 上传图片功能,具体代码如下所示:
@responsebody @requestmapping(path = "/save_photo", method={requestmethod.post}) public void adddish(@requestparam("photos") multipartfile file, httpservletrequest request, httpservletresponse response) throws exception { string path = null;// 文件路径 string json = ""; if (file!=null) {// 判断上传的文件是否为空 string type = null;// 文件类型 string filename = file.getoriginalfilename();// 文件原名称 system.out.println("上传的文件原名称:"+filename); // 判断文件类型 type = filename.indexof(".")!=-1?filename.substring(filename.lastindexof(".")+1, filename.length()):null; if (type!=null) {// 判断文件类型是否为空 if ("gif".equals(type.touppercase())||"png".equals(type.touppercase())||"jpg".equals(type.touppercase())) { // 项目在容器中实际发布运行的根路径 string realpath = request.getsession().getservletcontext().getrealpath("/"); // 自定义的文件名称 string truefilename = string.valueof(system.currenttimemillis()) + "." + type; // 设置存放图片文件的路径 path = realpath+/*system.getproperty("file.separator")+*/truefilename; system.out.println("存放图片文件的路径:"+path); // 转存文件到指定的路径 file.transferto(new file(path)); system.out.println("文件成功上传到指定目录下"); } json = "{\"res\":1}"; }else { system.out.println("不是我们想要的文件类型,请按要求重新上传"); //return null; json = "{\"res\":0}"; } }else { system.out.println("文件类型为空"); //return null; json = "{\"res\":0}"; } }else { system.out.println("没有找到相对应的文件"); json = "{\"res\":0}"; //return null; } response.setcontenttype("application/json;charset=utf-8"); response.getwriter().print(json); }
首先注意的是参数要加
@requestparam("photos") multipartfile file
你的html可能就类似这样的
<form action="/save_photo" enctype="multipart/form-data" method="post"> <input type="file" name="photos" /> <br> <input type="submit" value="上传" /> </form>
总结
以上所述是小编给大家介绍的spring boot的上传图片功能实例详解,希望对大家有所帮助
上一篇: Java编程一道多线程问题实例代码
推荐阅读
-
使用Spring boot + jQuery上传文件(kotlin)功能实例详解
-
Thinkphp5框架实现图片、音频和视频文件的上传功能详解
-
Spring boot的上传图片功能实例详解
-
laravel5.5框架的上传图片功能实例分析【仅传到服务器端】
-
JSP中图片的上传与显示方法实例详解
-
spring boot 使用 Thymeleaf +layui 使用到的功能实例
-
Spring Boot如何优雅的使用多线程实例详解
-
使用spring mvc+localResizeIMG实现HTML5端图片压缩上传的功能
-
Spring boot的上传图片功能实例详解
-
ionic4+angular7+cordova上传图片功能的实例代码