//Struts2里面的写法明颂是这样的。
//相对路径你应该知道到。
String relativePath = "/upload"
String absolutePath = ServletActionContext.getServletContext().getRealPath(relativePath)
//取出文件的春孙绝对路径,然后用File方法删除相应文件。
File file = new File(absolutePath)
if (file.exists()) {
激森郑file.delete()
}
405是你方法的漏基问题,JSP页面提交的时候用的是POST方法,你在servlet类里只重写了doget方法,只能处理get请求,处理不了post请求。可以重写service方法,两种返渣谨请求都可以梁薯处理。欢迎分享,转载请注明来源:内存溢出
评论列表(0条)