jsp中获取当前目录的方法
本文实例讲述了jsp中获取当前目录的实现方法,分享给大家供大家参考。具体实现方法如下:
1、利用system.getproperty()函数获取当前路径:
2、使用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 :
directory.getcanonicalpath(); //得到的是c:testabc
directory.getabsolutepath(); //得到的是c:testabc
direcotry.getpath(); //得到的是abc
file directory = new file(".");
directory.getcanonicalpath(); //得到的是c:test
directory.getabsolutepath(); //得到的是c:test.
direcotry.getpath(); //得到的是.
file directory = new file("..");
directory.getcanonicalpath(); //得到的是c:
directory.getabsolutepath(); //得到的是c:test..
direcotry.getpath(); //得到的是..
获取 java 程序当前的工作目录
string fullpath = file.getabsolutepath();
① 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
② request.getparameter("");
actionform.getmyfile();
方法:string filepath = request.getparameter("myfile");
得到的路径:d:vss安装目录users.txt
方法:string filepath = actionform.getmyfile();
得到的路径:d:vss安装目录users.txt
希望本文所述对大家的jsp程序设计有所帮助。
上一篇: 巧用缓存提高asp程序的性能
下一篇: 兼容浏览器的js事件绑定函数(详解)