zbb20171214 java 获取classpath路径

Posted Daryll

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了zbb20171214 java 获取classpath路径相关的知识,希望对你有一定的参考价值。

  //获取classpath路径

  String path2 = Thread.currentThread().getContextClassLoader().getResource("").getPath();
        System.out.println("path2 = " + path2);
        System.out.println(System.currentTimeMillis());

//一下是获取文件路径路径
        System.out.println(System.getProperty("user.dir"));
        File directory = new File("");// 设定为当前文件夹
        try {
            System.out.println(directory.getCanonicalPath());// 获取标准的路径
            System.out.println(directory.getAbsolutePath());// 获取绝对路径
        } catch (Exception e) {
        }










以上是关于zbb20171214 java 获取classpath路径的主要内容,如果未能解决你的问题,请参考以下文章

[技术分享]20171214_java_检验全角字符

zbb20180913 java thread JDK-Lock锁

zbb20180913 java thread 死锁示例代码

zbb20180929 thread java并发编程之Condition

zbb20170301_好看的404和500页面

zbb20170604 java file 路径 this.getClass().getResource(String) 路径问题