欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JAVA:获得当前执行路径的办法

程序员文章站 2022-04-21 17:50:52
...

  比如吾在开发时调试功能,当前路径是哪个?有点明白,也不确定。这个时候,还是老老实实的检查一下:

public static String getCurrentRunningDir()
{
    File f = new File("");
    try
    {
        String dir = f.getCanonicalPath();
        System.out.println("Current Dir:"+dir);
        return dir;
    }
    catch (IOException e)\
    {
         e.printStackTrace();
    }
    return null;
}

相关标签: JAVA/JNI/JNA java