日期:2014-05-18  浏览次数:20778 次

如何在线创建文件夹
在第一个jsp页面输入文件夹名,传到第二个页面或sevlect以这个名字创建文件夹

------解决方案--------------------
http://www.jsp8.cn/html/2006/11/30/1164890528015.html
------解决方案--------------------
楼上的方法是绝对路径.
用File f = new File(application.getRealPath( "/ff "));
if(f.exists())
{
......
}
.......
用这个试试吧
new File(application.getRealPath( "/ff "));//这里边的 '/ '表示回到了项目的根目录,比如项目发布在
c:\tomcat5.0\webapps\tt;
上边的路径就会在c:\tomcat5.0\webapps\tt\ff;