网页用a标签引了一个超链接调用了文件下载的方法,但是没有反应,isFile也确认为true了
public void dow() {
String path = getSession().getServletContext().getRealPath("/download");
path=path+"\\"+"Koala"+"."+"jpg";
System.out.println(path);
File file=new File(path);
System.out.println(file.isFile());
renderFile(file);
render("../layout.html");
}
项目:JFinal
删掉 render("../layout.html") 即可