Jsp+Servlet实现文件上传下载 删除上传文件(三)
接着上一篇讲:Jsp+Servlet实现文件上传下载(二)--文件列表展示
本章来实现一下删除已上传文件,同时优化了一下第一章中的代码。
废话少说,上代码得意
1.调整列表页面list.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <html> <head> <title>上传文件列表</title> </head> <body> <h3>文件列表</h3> <table class="acclist_tab" border="1" bordercolor="#000000" cellspacing="0" cellpadding="2" style="border-collapse:collapse;"> <tr> <th>文件名</th> <th>文件大小(KB)</th> <th>操作</th> </tr> <c:if test="${not empty accessoryList}"> <c:forEach items="${accessoryList}" var="acc"> <tr> <td>${acc.fileName}</td> <td>${acc.fileSize}</td> <td><a href="<%=request.getContextPath()%>/removeUploadedFile?id=${acc.id}" rel="external nofollow" >删除</a></td> </tr> </c:forEach> </c:if> </table> </body> </html>
2.新增FileUtils工具类
package util; import java.io.File; /** * 文件操作工具类 * * @author xusucheng * @create 2017-12-30 **/ public class FileUtils { public static boolean delete(String path){ File file = new File(path); if(!file.isFile()){ System.out.println("删除失败,文件:"+path+"不存在!"); return false; } file.delete(); return true; } }
3.调整附件实体DAO,新增load方法
package dao.upload; import entity.upload.EntityAccessory; import util.DBUtil; import java.math.BigDecimal; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; /** * 附件上传DAO * * @author xusucheng * @create 2017-12-29 **/ public class AccessoryDao { public static void add(EntityAccessory entity) { Connection conn = DBUtil.getConnection(); String sql = "insert into tbl_accessory(file_name,file_size,file_ext_name,file_path) values(?,?,?,?)"; try { PreparedStatement ps = conn.prepareStatement(sql); ps.setString(1, entity.getFileName()); ps.setDouble(2, entity.getFileSize()); ps.setString(3, entity.getFile_ext_name()); ps.setString(4, entity.getFilePath()); ps.execute(); //conn.commit(); DBUtil.close(null, ps, conn); } catch (SQLException e) { e.printStackTrace(); } } public static List<EntityAccessory> list() { Connection conn = DBUtil.getConnection(); String sql = "select id,file_name,file_size,file_ext_name,file_path from tbl_accessory"; List<EntityAccessory> accessoryList = new ArrayList<>(); try { PreparedStatement ps = conn.prepareStatement(sql); ResultSet rs = ps.executeQuery(); while (rs.next()) { EntityAccessory entity = new EntityAccessory(); entity.setId(rs.getInt("id")); entity.setFileName(rs.getString("file_name")); entity.setFileSize(new BigDecimal(rs.getDouble("file_size") / 1024).setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue()); entity.setFile_ext_name(rs.getString("file_ext_name")); entity.setFilePath(rs.getString("file_path")); accessoryList.add(entity); } DBUtil.close(rs, ps, conn); } catch (SQLException e) { e.printStackTrace(); } return accessoryList; } public static EntityAccessory load(int id){ Connection conn = DBUtil.getConnection(); PreparedStatement ps=null; ResultSet rs=null; EntityAccessory entity = new EntityAccessory(); String sql = "select id, file_name,file_size,file_ext_name,file_path from tbl_accessory where id=?"; try { ps = conn.prepareStatement(sql); ps.setInt(1,id); rs = ps.executeQuery(); while (rs.next()){ entity.setId(rs.getInt("id")); entity.setFileName(rs.getString("file_name")); entity.setFileSize(rs.getDouble("file_size")); entity.setFile_ext_name(rs.getString("file_ext_name")); entity.setFilePath(rs.getString("file_path")); } } catch (SQLException e) { e.printStackTrace(); }finally { DBUtil.close(rs,ps,conn); } return entity; } public static void remove(int id) { Connection conn = DBUtil.getConnection(); String sql = "delete from tbl_accessory where id=?"; try { PreparedStatement ps = conn.prepareStatement(sql); ps.setInt(1,id); ps.execute(); //conn.commit(); mysql默认开启了autocommit DBUtil.close(null,ps,conn); } catch (SQLException e) { e.printStackTrace(); } } }
4.新增删除文件处理器,removeUploadedFileServlet
package servlet.upload; import dao.upload.AccessoryDao; import entity.upload.EntityAccessory; import util.FileUtils; 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.IOException; /** * 删除已上传文件 * * @author xusucheng * @create 2017-12-30 **/ @WebServlet("/removeUploadedFile") public class removeUploadedFileServlet extends HttpServlet { @Override protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { //String filePath = request.getParameter("filePath"); int fileId = Integer.valueOf(request.getParameter("id")); EntityAccessory entity = AccessoryDao.load(fileId); //删除文件 FileUtils.delete(entity.getFilePath()); //删除数据库记录 AccessoryDao.remove(fileId); //跳回到文件列表页 //request.getRequestDispatcher("listUploadedFiles").forward(request, response); response.sendRedirect("listUploadedFiles"); } @Override protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { doPost(request, response); } }
5.测试效果截图
删除前:
删除后:
6.下集预告
实现文件下载功能
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。
上一篇:JSP实现客户信息管理系统
栏 目:JSP编程
下一篇:Jsp+Servlet实现文件上传下载 文件列表展示(二)
本文标题:Jsp+Servlet实现文件上传下载 删除上传文件(三)
本文地址:https://www.xiuzhanwang.com/a1/JSPbiancheng/11432.html
您可能感兴趣的文章
- 01-11web下载文件和跳转的方法
- 01-11jsp文件下载功能实现代码
- 01-11Spring获取ApplicationContext对象工具类的实现方法
- 01-11web前端超出两行用省略号表示的实现方法
- 01-11JSP servlet实现文件上传下载和删除
- 01-11jsp+servlet实现文件上传与下载功能
- 01-11将properties文件的配置设置为整个Web应用的全局变量实现方法
- 01-11秒杀系统Web层设计的实现方法
- 01-11Jsp+Servlet实现文件上传下载 文件上传(一)
- 01-11tomcat共享多个web应用会话的实现方法
阅读排行
本栏相关
- 01-11web下载文件和跳转的方法
- 01-11Spring注入Date类型的三种方法总结
- 01-11在JSP中使用formatNumber控制要显示的小
- 01-11Properties 持久的属性集的实例详解
- 01-11EJB3.0部署消息驱动Bean抛javax.naming.Na
- 01-11jsp文件下载功能实现代码
- 01-11JSP页面跳转方法大全
- 01-11详解Spring的核心机制依赖注入
- 01-11jsp 使用request为页面添加静态数据的实
- 01-11Spring获取ApplicationContext对象工具类的
随机阅读
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 04-02jquery与jsp,用jquery
- 01-10SublimeText编译C开发环境设置
- 01-10delphi制作wav文件的方法
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 01-11ajax实现页面的局部加载
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 01-10C#中split用法实例总结