Java文件路徑(getResource)

getResourceAsStream ()返回的是inputstreamjava

getResource()返回:URLweb

Class.getResource("")    返回的是當前Class這個類所在包開始的爲置tomcat

Class.getResource("/") 返回的是classpath的位置服務器

getClassLoader().getResource("")  返回的是classpath的位置app

getClassLoader().getResource("/")  錯誤的!!dom

======================================================================== 
Class.getResourceAsStream 和 ClassLoader.getResourceAsStream 

這兩個方法仍是略有區別的, 之前一直不加以區分,直到今天發現要寫這樣的代碼的時候運行錯誤, 才把這個問題澄清了一下。webapp

基本上,兩個均可以用於從 classpath 裏面進行資源讀取,  classpath包含classpath中的路徑和classpath中的jar。工具

兩個方法的區別是資源的定義不一樣, 一個主要用於相對與一個object取資源,而另外一個用於取相對於classpath的資源,用的是絕對路徑。this

在使用Class.getResourceAsStream 時, 資源路徑有兩種方式, 一種以 / 開頭,則這樣的路徑是指定絕對路徑, 若是不以 / 開頭, 則路徑是相對與這個class所在的包的。spa

在使用ClassLoader.getResourceAsStream時, 路徑直接使用相對於classpath的絕對路徑。

舉例,下面的三個語句,實際結果是同樣的

com.explorers.Test.class.getResourceAsStream("abc.jpg") 
com.explorers.Test.class.getResourceAsStream("/com/explorers/abc.jpg") 
ClassLoader.getResourceAsStream("com/explorers/abc.jpg") 
================================================================================

平時寫程序的時候,不少時候提示文件找不到,而拋出了異常,如今整理以下


一 相對路徑的得到 
    說明:相對路徑(即不寫明時候到底相對誰)都可經過如下方式得到(不管是通常的Java項目仍是web項目) 
         String relativelyPath=System.getProperty("user.dir"); 
        上述相對路徑中,java項目中的文件是相對於項目的根目錄 
        web項目中的文件路徑視不一樣的web服務器不一樣而不一樣(tomcat是相對於 tomcat安裝目錄\bin)


二 類加載目錄的得到(即當運行時某一類時得到其裝載目錄) 
      1)通用的方法一(不管是通常的java項目仍是web項目,先定位到能看到包路徑的第一級目錄) 
        
        InputStream is=TestAction.class.getClassLoader().getResourceAsStream("test.txt");
        (test.txt文件的路徑爲 項目名\src\test.txt;類TestAction所在包的第一級目錄位於src目錄下) 
        
        上式中將TestAction,test.txt替換成對應成相應的類名和文件名字便可

      2)通用方法二 (此方法和1中的方法相似,不一樣的是此方法必須以'/'開頭) 
         InputStream is=Test1.class.getResourceAsStream("/test.txt"); 
         (test.txt文件的路徑爲 項目名\src\test.txt,類Test1所在包的第一級目錄位於src目錄下)

   

三 web項目根目錄的得到(發佈以後) 
    1 從servlet出發

    可創建一個servlet在其的init方法中寫入以下語句 
   ServletContext s1=this.getServletContext(); 
   String temp=s1.getRealPath("/"); (關鍵) 
    結果形如:D:\工具\Tomcat-6.0\webapps\002_ext\ (002_ext爲項目名字)

                     若是是調用了s1.getRealPath("")則輸出D:\工具\Tomcat-6.0\webapps\002_ext(少了一個"\")

   2 從httpServletRequest出發

             String cp11111=request.getSession().getServletContext().getRealPath("/");

      結果形如:D:\工具\Tomcat-6.0\webapps\002_ext\

 

四 classpath的獲取(在Eclipse中爲得到src或者classes目錄的路徑)

    方法一   Thread.currentThread().getContextClassLoader().getResource("").getPath()


eg: String t=Thread.currentThread().getContextClassLoader().getResource("").getPath();
          System.out.println("t---"+t);

                      輸出:t---/E:/order/002_ext/WebRoot/WEB-INF/classes/

 


   方法二     JdomParse.class.getClassLoader().getResource("").getPath() (JdomParse爲src某一個包中的類,下同)

                 eg:String p1=JdomParse.class.getClassLoader().getResource("").getPath();
       System.out.println("JdomParse.class.getClassLoader().getResource--"+p1);

   輸出: JdomParse.class.getClassLoader().getResource--/E:/order/002_ext/WebRoot/WEB-INF/classes/


另外,若是想把文件放在某一包中,則能夠 經過如下方式得到到文件(先定位到該包的最後一級目錄)

        eg String p2=JdomParse.class.getResource("").getPath(); 
         System.out.println("JdomParse.class.getResource---"+p2);

   輸出: JdomParse.class.getResource---/E:/order/002_ext/WebRoot/WEB-INF/classes/jdom/ (JdomParse爲src目錄下jdom包中的類)


五   屬性文件的讀取:

     方法 一

           InputStream in = lnew BufferedInputStream( new FileInputStream(name));       

           Properties p = new Properties();

           p.load(in);


    注意路徑的問題,作執行以後就能夠調用p.getProperty("name")獲得對應屬性的值


方法二

            Locale locale = Locale.getDefault();  
            ResourceBundle localResource = ResourceBundle.getBundle("test/propertiesTest", locale);
            String value = localResource.getString("test"); 
            System.out.println("ResourceBundle: " + value);

   工程src目錄下propertiesTest.properties(名字後綴必須爲properties)文件內容以下:

               test=hello word


public class FileTest {    public static void main(String[] args) {
        System.out.println(Thread.currentThread().getContextClassLoader().getResource(""));
        System.out.println(FileTest.class.getClassLoader().getResource(""));
        System.out.println(ClassLoader.getSystemResource(""));
        System.out.println(FileTest.class.getResource(""));
        System.out.println(FileTest.class.getResource("/")); // Class文件所在路徑
        System.out.println(new File("/").getAbsolutePath());
        System.out.println(System.getProperty("user.dir"));
    }
}

 

輸出結果:

file:/E:/workspace/JavaStudy/bin/ file:/E:/workspace/JavaStudy/bin/ file:/E:/workspace/JavaStudy/bin/ file:/E:/workspace/JavaStudy/bin/test/ file:/E:/workspace/JavaStudy/bin/ E:\ E:\workspace\JavaStudy

相關文章
相關標籤/搜索