您好,登錄后才能下訂單哦!
一、對于java項目中文件的讀取
1、使用System 或是 系統的Properties對象
①直接是使用 String relativelyPath=System.getProperty("user.dir");
②使用Properties對象
我們先來遍歷一下系統的屬性:
Properties properties = System.getProperties(); Enumeration pnames = properties.propertyNames(); while (pnames.hasMoreElements()) { String pname = (String) pnames.nextElement(); System.out.print(pname + "--------------"); System.out.println(properties.getProperty(pname)); }
這是系統的屬性,由此其實還是繞到使用 user.dir 屬性來取得當前項目的真是路徑
通過 String relativelyPath = properties.getProperty("user.dir"); 取得
我自己的電腦上面的項目 Log4jProj 的真是路徑是 :
user.dir--------------D:\Develop\workspace\ws_self\10_ws_eclipse_j2ee_mars\Log4jProj
其實方式①和方式②一個意思,殊途同歸
2、第二種方式:使用當前類的類加載器進行獲取 ClassLoader
首先來回顧一下,如何獲取Class字節碼實例,三種方式:(比如我的類叫Demo)
① Demo.class
② Class.forName("類的全稱")
③ 利用Demo的實例對象,調用對象的getClass()方法獲取該對象的Class實例
回顧了如何獲取Class字節碼實例之后,然后再來回顧一下,如何獲取ClassLoader對象
① Demo.class.getClassLoader()
② Class.forName("類的全稱").getClassLoader()
③ 假設demo為Demo的實例化對象 demo.getClass().getClassLoader()
④ 通過Thread對象的getContextClassLoader() 方法來獲取
Thread.currentThread().getContextClassLoader()
進入正題:
有了ClassLoader對象之后,我們這么時候通過ClassLoader對象來獲取java項目中的文件
首先讓大家看下我當前的項目目錄結構
以及實際文件的目錄結構
需求就是,此時Test需要讀取 log4j.properties 文件的路徑
用到ClassLoader的兩個方法,一個是靜態的一個非靜態的
輸出結果:
記住哦,這里的getSystemResource方法獲取的是URL對象,需要調用getPath()方法獲取路徑
1、當只是獲取 log4j.properties 文件輸入流的時候可以通過以下兩種方式
① 依然是使用 ClassLoader, 其中有兩個方法,兩者一個是靜態一個非靜態
ClassLoader.getSystemResourceAsStream("config/log4j.properties"); Thread.currentThread().getContextClassLoader().getResourceAsStream("config/log4j.properties");
② 先通過File文件包裝之后,然后新建一個輸入流
File file01 = new File("config/log4j.properties"); System.out.println(file01.getAbsolutePath()); File file02 = new File(properties.getProperty("user.dir") + "/bin/config/log4j.properties"); System.out.println(file02.getAbsolutePath()); //ClassLoader.getSystemResource獲取的是URL對象 File file03 = new File(ClassLoader.getSystemResource("config/log4j.properties").getPath()); System.out.println(file03.getAbsolutePath());
其中創建file03 的方式不建議采納,因為getSystemResource方法如果沒獲取到文件,則得到的
URL對象為null,此時再調用getPath()就會報錯
如果有了文件對象就可以直接創建流了,此處不作贅述
以上這篇淺談java 中文件的讀取File、以及相對路徑的問題就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。