jsp中获取当前目录的多种简单实现程序
1、利用System.getProperty()函数获取当前路径:
代码如下 | 复制代码 |
System.out.println(System.getProperty("user.dir"));//user.dir指定了当前的路径 |
2、使用File提供的函数获取当前路径:
代码如下 | 复制代码 |
File directory = new File("");//设定为当前文件夹 try{ System.out.println(directory.getCanonicalPath());//获取标准的路径 System.out.println(directory.getAbsolutePath());//获取绝对路径 }catch(Exceptin e){} |
File.getCanonicalPath()和File.getAbsolutePath()大约只是对于new File(".")和new File("..")两种路径有所区别。
# 对于getCanonicalPath()函数,“."就表示当前的文件夹,而”..“则表示当前文件夹的上一级文件夹
# 对于getAbsolutePath()函数,则不管”.”、“..”,返回当前的路径加上你在new File()时设定的路径
# 至于getPath()函数,得到的只是你在new File()时设定的路径
比如当前的路径为 C:test :
代码如下 | 复制代码 |
File directory = new File("abc"); File directory = new File("."); File directory = new File(".."); |
获取 JAVA 程序当前的工作目录
File file = new File("t.tmp");
String fullpath = file.getAbsolutePath();
1、request.getRealPath
方法:request.getRealPath("/")
得到的路径:C:Program FilesApache Software FoundationTomcat 5.5webappsstrutsTest
方法:request.getRealPath(".")
得到的路径:C:Program FilesApache Software FoundationTomcat 5.5webappsstrutsTest.
方法:request.getRealPath("")
得到的路径:C:Program FilesApache Software FoundationTomcat 5.5webappsstrutsTest
request.getRealPath("web.xml")
C:Program FilesApache Software FoundationTomcat 5.5webappsstrutsTestweb.xml
2、request.getParameter("");
ActionForm.getMyFile();
方法:String filepath = request.getParameter("myFile");
得到的路径:D:VSS安装目录users.txt
方法:String filepath = ActionForm.getMyFile();
得到的路径:D:VSS安装目录users.txt
补充:Jsp教程,Java技巧及代码