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

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

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;
}

上一篇:浅谈React中useRef的原理及实现


下一篇:opencv第4讲--遍历图像中的每一个像素