upload文件功能的jsp前端和servlet后台代码怎么写
Admin 2023-04-12 群英技术资讯 350 次浏览
1、jsp前端
<%-- Created by IntelliJ IDEA. User: Lenovo Date: 2020/6/19 Time: 22:53 Learn from https://www.bilibili.com/video/BV18z411i7gh?t=23&p=192 To change this template use File | Settings | File Templates. --%> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>文件上传</title> </head> <body> <!--文件上传对表单的要求--> <!-- 1、表单中的请求提交方式必须是POST 2、表单中应指定所提交的请求位multipart请求,通过在<form/>标签中添加enctype属性 其值为multipart/form-data 3、 表单 --> <form method="POST" action="http://localhost:8888/hello/UploadImageServlet" enctype="multipart/form-data"> 编号<input type="text" name="BNO"></br> 名字<input type="text" name="BNAME"></br> 照片<input type="file" name="picutreUrl"></br> <input type="submit" value="注册"> </form> </body> </html>
2、servlet后台
package Servlet.bookServlet; import org.apache.commons.fileupload.FileItem; import org.apache.commons.fileupload.FileUploadException; import org.apache.commons.fileupload.disk.DiskFileItemFactory; import org.apache.commons.fileupload.servlet.ServletFileUpload; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.*; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; import java.util.List; @WebServlet(name = "UploadImageServlet") public class UploadImageServlet extends HttpServlet { @Override protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { this.doPost(request,response); } @Override protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { //1、判断请求是不是multipart请求 if(!ServletFileUpload.isMultipartContent(request)){ throw new RuntimeException("当前请求不支持文件上传"); } System.out.println("开始上传文件"); //2、创建FileItem工厂==>文件写入硬盘的作用 try { DiskFileItemFactory factory = new DiskFileItemFactory(); //3、创建temp临时文件夹 String tempPath ="D:\\tomcat\\apache-tomcat-9.0.35-windows-x64\\apache-tomcat-9.0.35\\webapps\\librarySystem\\web\\net\\temp"; File tempFile = new File(tempPath); factory.setRepository(tempFile); //4、设置使用临时文件的边界值,大于该值,上传文件先保存在临时文件中,小于该值,则直接写入内存 //单位是字节 factory.setSizeThreshold(1024*1024*1); //5、创建文件上传核心组件 // 调用ServletFileUpload.parseRequest方法解析request对象,得到一个保存了所有上传内容的List对象。 ServletFileUpload upload = new ServletFileUpload(factory); upload.setHeaderEncoding("utf-8");//可以解决文件名中文乱码 upload.setFileSizeMax(1024*1024*2); String bNo="defaultBNo",bName="defaultBName"; //6、解析请求 List<FileItem> items =upload.parseRequest(request); //7、遍历请求 for(FileItem item:items){ //普通表单项,上传名字,编号等普通信息的上i传 if(item.isFormField()){ String fileName = item.getFieldName();// name属性值 String fileValue = item.getString("utf-8");// name对应的value值 System.out.println(fileName + " -- " + fileValue); if(fileName.equalsIgnoreCase("BNO")){ bNo = fileValue; } if(fileName.equalsIgnoreCase("BNAME")){ bName = fileValue; } } else{//上传图片等 String fileName = item.getName(); System.out.println("上传文件名字:"+fileName); String suffix = fileName.substring(fileName.lastIndexOf('.'));//获取文件类型 String newFileName = bNo+"_"+bName+suffix; System.out.println(newFileName); //获取输入流,其中有上传文件的内容 InputStream is = item.getInputStream(); //String path = this.getServletContext().getRealPath("/net/bookImage");//获得当前项目保存服务器地址,也就是web文件夹下 String path ="D:\\tomcat\\apache-tomcat-9.0.35-windows-x64\\apache-tomcat-9.0.35\\webapps\\librarySystem\\web\\net\\bookImage"; //文件夹内文件数目有上限,但是可以创建子目录 //获取当前系统时间 Calendar now = Calendar.getInstance(); int year = now.get(Calendar.YEAR); int month = now.get(Calendar.MONTH)+1; int day = now.get(Calendar.DAY_OF_MONTH); path = path+"/"+year+"/"+month+"/"+day; //若该目录不存在,直接创建新目录 File dirFile = new File(path); if(!dirFile.exists()){ dirFile.mkdirs(); } //创建目标文件,用来保存上传文件 File desFile = new File(path,newFileName); //创建文件输出流 OutputStream os = new FileOutputStream(desFile); //将输入流数据写入到输出流中 int len=-1; byte[]buf = new byte[1024]; while((len=is.read(buf))!=-1){ os.write(buf,0,len); } //desFile.delete();//删除临时文件 os.close();//输出流 is.close();//输入流 //删除临时文件 item.delete(); } } } catch (FileUploadException e) { e.printStackTrace(); } } }
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
这篇文章主要介绍了jsp response.sendRedirect()用法详解,本篇文章通过简要的案例,讲解了该项技术的了解与使用,以下就是详细内容,需要的朋友可以参考下
这篇文章主要介绍了Javaweb工程运行报错HTTP Status 404解决办法,文中通过示例介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
这篇文章主要介绍了jsp中sitemesh修改tagRule技术以及详细代码分析,有需要的朋友跟着小编一起学习参考下吧。
这篇文章主要为大家详细介绍了jsp实现简单用户7天内免登录,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
这篇文章主要为大家详细介绍了JSP使用过滤器防止Xss漏洞,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008