• JAVA中获取项目文件路径


    在java中获得文件的路径在我们做上传文件操作时是不可避免的。

    web 上运行 
    1:
    this.getClass().getClassLoader().getResource("/").getPath(); 
    this.getClass().getClassLoader().getResource("").getPath();  得到的是 ClassPath的绝对URI路径。
    如:/D:/jboss-4.2.2.GA/server/default/deploy/hp.war/WEB-INF/classes/

    System.getProperty("user.dir");

    this.getClass().getClassLoader().getResource(".").getPath();    得到的是 项目的绝对路径。
    如:/D:/jboss-4.2.2.GA/server/default/deploy/hp.war


    2:
    this.getClass().getResource("/").getPath(); 
    this.getClass().getResource("").getPath(); 得到的是当前类 文件的URI目录。不包括自己!
    如:/D:/jboss-4.2.2.GA/server/default/deploy/hp.war/WEB-INF/classes/com/jebel/helper/

    this.getClass().getResource(".").getPath();   X 不 能运行


    3:
    Thread.currentThread().getContextClassLoader().getResource("/").getPath()
    Thread.currentThread().getContextClassLoader().getResource("").getPath()  得到的是 ClassPath的绝对URI路径。
    如:/D:/jboss-4.2.2.GA/server/default/deploy/hp.war/WEB-INF/classes/

    Thread.currentThread().getContextClassLoader().getResource(".").getPath()  得到的是 项目的绝对路径。
    如:/D:/jboss-4.2.2.GA/server/default/deploy/hp.war


    在本地运行中

    1:
    this.getClass().getClassLoader().getResource("").getPath(); 
    this.getClass().getClassLoader().getResource(".").getPath();   得到的是 ClassPath的绝对URI路径。
    如:/D:/myProjects/hp/WebRoot/WEB-INF/classes
    this.getClass().getClassLoader().getResource(".").getPath();  X 不 能运行

    2:
    this.getClass().getResource("").getPath(); 
    this.getClass().getResource(".").getPath(); 得到的是当前类 文件的URI目录。不包括自己!
    如:/D:/myProjects/hp/WebRoot/WEB-INF/classes/com/jebel/helper/

    /D:/myProjects/hp/WebRoot/WEB-INF/classes/    得到的是 ClassPath的绝对URI路径。
    如:/D:/myProjects/hp/WebRoot/WEB-INF/classes

    3:
    Thread.currentThread().getContextClassLoader().getResource(".").getPath()
    Thread.currentThread().getContextClassLoader().getResource("").getPath() 得到的是 ClassPath的绝对URI路径。。
    如:/D:/myProjects/hp/WebRoot/WEB-INF/classes

    Thread.currentThread().getContextClassLoader().getResource("/").getPath()    X 不 能运行


     

    最后 
        在Web应用程序中,我们一般通过ServletContext.getRealPath("/")方法得到Web应用程序的根目录的绝对路径。
    还有request.getContextPath();  在Weblogic中要用request.getServletContext().getContextPath();但如果打包成war部署到Weblogic服务器,项目内部并没有文件结构的概念,用这种方式是始终得到null,获取不到路径,目前还没有找到具体的解决方案。

  • 相关阅读:
    Open Live Writer增加代码插件
    WinSCP列出’/’目录项出错
    Ueditor中增加迅雷下载支持
    Ueditor设置默认字体
    PDF编辑、删除、替换某页面或文字
    个人站长如何使用svn发布到服务器不遗漏文件
    PHP 测试程序运行时间 microtime函数用法
    LeetCode---Stack && Heap
    LeetCode---Binary Search
    LeetCode---Hash Table
  • 原文地址:https://www.cnblogs.com/rosepotato/p/3767466.html
Copyright © 2020-2023  润新知