码迷,mamicode.com
首页 > 其他好文 > 详细

servlet3.0文件上传功能

时间:2014-07-22 00:21:35      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:http   os   文件   io   art   re   

protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

request.setCharacterEncoding("utf-8");
//获取文件部件part
Part part = request.getPart("file");
String h = part.getHeader("content-disposition");
String filename = h.substring(h.lastIndexOf("=") + 2, h.length() - 1);
//获取文件服务器头部信息
String root = request.getServletContext().getRealPath("/upload");
File f=new File(root);
f.mkdir();
part.write(root+"/"+filename);

}

 

serlvet中post方法

注意 jsp页面中file选择 的要有属性 name=‘file‘

servlet3.0文件上传功能,布布扣,bubuko.com

servlet3.0文件上传功能

标签:http   os   文件   io   art   re   

原文地址:http://www.cnblogs.com/Wen-yu-jing/p/3858425.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!