专家
公告
财富商城
电子网
旗下网站
首页
问题库
专栏
标签库
话题
专家
NEW
门户
发布
提问题
发文章
springmvc文件上传
2019-04-15 14:55
发布
生成海报
站内文章
/
PIC单片机
10428
0
1690
1 配置虚拟路径
在tomcat上配置图片虚拟目录,在tomcat下conf/server.xml中添加:
访问http://localhost:8080/pic/x.jpg即可访问d:uploadx.jpg的图片
2 准备jar包
3 编写jsp前端页面
文件上传
文件上传
action=
"
${
pageContext.request.contextPath
}
/upload.action"
method=
"post"
enctype=
"multipart/form-data"
>
type=
"file"
name=
"file"
>
type=
"submit"
value=
"
上传
"
>