【Web后端】实现文件上传

  • 表单必须使用post提交 ,enctype 必须是multipart/form-data
  • 在Servlet上填加注解 @MultipartConfig
  • location :默认情况下将存储文件的目录,默认值为""。
  • maxFileSize :允许上传文件的最大大小,其值以字节为单位。 默认值为-1L表示无限制
  • maxRequestSize :multipart/form-data数据请求所允许的最大大小。 默认值为-1L,表示无限制。
  • 执行上传处理
java 复制代码
//获取当前工程真实路径
ServletContext context=this.getServletContext();
String realPath = context.getRealPath("/");
String path=realPath+"upload";
File dir=new File(path);
dir.mkdirs();//创建目录
//完成上传处理
Part part=request.getPart("pic");
//获取要上传文件的原始名
String fileName=part.getSubmittedFileName();
//截取出扩展名
String extName=fileName.substring(fileName.lastIndexOf("."));
//生成文件名前缀
String prefix= String.valueOf(System.currentTimeMillis());
fileName=prefix+extName;
File file=new File(dir,fileName);
//上传处理
part.write(file.getAbsolutePath());
info.setPic("/upload/"+fileName);
service.insert(info);
相关推荐
Sylvia-girl3 小时前
Java——抽象类
java·开发语言
Touper.6 小时前
Redis 基础详细介绍(Redis简单介绍,命令行客户端,Redis 命令,Java客户端)
java·数据库·redis
m0_535064606 小时前
C++模版编程:类模版与继承
java·jvm·c++
虾条_花吹雪7 小时前
Using Spring for Apache Pulsar:Message Production
java·ai·中间件
tomorrow.hello7 小时前
Java并发测试工具
java·开发语言·测试工具
Moso_Rx7 小时前
javaEE——synchronized关键字
java·java-ee
张小洛8 小时前
Spring AOP 是如何生效的(入口源码级解析)?
java·后端·spring
DKPT8 小时前
Java设计模式之行为型模式(观察者模式)介绍与说明
java·笔记·学习·观察者模式·设计模式
追风少年浪子彦9 小时前
mapstruct与lombok冲突原因及解决方案
java·spring boot·spring·spring cloud
why技术9 小时前
也是出息了,业务代码里面也用上算法了。
java·后端·算法