当前位置: 技术问答>java相关
怎样得到java application所在的当前目录路径?(不用JFileChooser)
来源: 互联网 发布时间:2015-04-08
本文导语: 多写大家! | String path = YOUR_JAVA_CLASS.class.getResource("").getFile(); | 不好意思前面说错了!可以这样: import java.io.*; class path { public static void main(String[] args) { File a=new F...
多写大家!
|
String path = YOUR_JAVA_CLASS.class.getResource("").getFile();
|
不好意思前面说错了!可以这样:
import java.io.*;
class path
{
public static void main(String[] args)
{
File a=new File("");
System.out.println(a.getAbsolutePath());
}
}
import java.io.*;
class path
{
public static void main(String[] args)
{
File a=new File("");
System.out.println(a.getAbsolutePath());
}
}
|
还是不懂,
请在具体点。
请在具体点。
|
好高深,faint......
|
application.getRealPath("/")
这样可以得到jsp根页面的目录,其实就是调用了ServletContext.getRealPath(String VirtualPath);
在一般的应用中可以这样去的当前目录
System.getProperty("user.dir");
这样可以得到jsp根页面的目录,其实就是调用了ServletContext.getRealPath(String VirtualPath);
在一般的应用中可以这样去的当前目录
System.getProperty("user.dir");