老師我路徑多一個SHOP
// 商品模塊,刪除商品的方法
private void delete(HttpServletRequest request, HttpServletResponse response) throws IOException {
// 接收數據
Integer pid = Integer.parseInt(request.getParameter("pid"));
// 處理數據
ProductService productService = new ProductServiceImpl();
// 查詢商品訊息
Product product = productService.findOne(pid);
String path = product.getPath();
System.out.println(path);
if (path != null && !"".equals(path)) {
String realPath = this.getServletContext().getRealPath(path);
System.out.println(realPath);
File file = new File(realPath);
if (file.exists()) {
file.delete();
}
}
老師它顯示出的路徑為什麼會多一個shop/導致無法刪除請問該如何解決
正在回答 回答被采纳积分+1
- 参与学习 人
- 提交作业 357 份
- 解答问题 8016 个
本阶段将带你学习MySQL数据库,JDBC接口,MyBatis框架等,带你掌握的数据的存放和管理。
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星