<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
本文中提供了九種方式獲取resources目錄下檔案的方式。其中列印檔案的方法如下:
/** * 根據檔案路徑讀取檔案內容 * * @param fileInPath * @throws IOException */ public static void getFileContent(Object fileInPath) throws IOException { BufferedReader br = null; if (fileInPath == null) { return; } if (fileInPath instanceof String) { br = new BufferedReader(new FileReader(new File((String) fileInPath))); } else if (fileInPath instanceof InputStream) { br = new BufferedReader(new InputStreamReader((InputStream) fileInPath)); } String line; while ((line = br.readLine()) != null) { System.out.println(line); } br.close(); }
主要核心方法是使用getResource和getPath方法,這裡的getResource("")裡面是空字串
public void function1(String fileName) throws IOException { String path = this.getClass().getClassLoader().getResource("").getPath();//注意getResource("")裡面是空字串 System.out.println(path); String filePath = path + fileName; System.out.println(filePath); getFileContent(filePath); }
主要核心方法是使用getResource和getPath方法,直接通過getResource(fileName)方法獲取檔案路徑,注意如果是路徑中帶有中文一定要使用URLDecoder.decode解碼。
/** * 直接通過檔名getPath來獲取路徑 * * @param fileName * @throws IOException */ public void function2(String fileName) throws IOException { String path = this.getClass().getClassLoader().getResource(fileName).getPath();//注意getResource("")裡面是空字串 System.out.println(path); String filePath = URLDecoder.decode(path, "UTF-8");//如果路徑中帶有中文會被URLEncoder,因此這裡需要解碼 System.out.println(filePath); getFileContent(filePath); }
直接通過檔名+getFile()來獲取檔案。如果是檔案路徑的話getFile和getPath效果是一樣的,如果是URL路徑的話getPath是帶有引數的路徑。如下所示:
url.getFile()=/pub/files/foobar.txt?id=123456 url.getPath()=/pub/files/foobar.txt
使用getFile()方式獲取檔案的程式碼如下:
/** * 直接通過檔名+getFile()來獲取 * * @param fileName * @throws IOException */ public void function3(String fileName) throws IOException { String path = this.getClass().getClassLoader().getResource(fileName).getFile();//注意getResource("")裡面是空字串 System.out.println(path); String filePath = URLDecoder.decode(path, "UTF-8");//如果路徑中帶有中文會被URLEncoder,因此這裡需要解碼 System.out.println(filePath); getFileContent(filePath); }
直接使用getResourceAsStream方法獲取流,上面的幾種方式都需要獲取檔案路徑,但是在SpringBoot中所有檔案都在jar包中,沒有一個實際的路徑,因此可以使用以下方式。
/** * 直接使用getResourceAsStream方法獲取流 * springboot專案中需要使用此種方法,因為jar包中沒有一個實際的路徑存放檔案 * * @param fileName * @throws IOException */ public void function4(String fileName) throws IOException { InputStream in = this.getClass().getClassLoader().getResourceAsStream(fileName); getFileContent(in); }
主要也是使用getResourceAsStream方法獲取流,不使用getClassLoader可以使用getResourceAsStream("/設定測試.txt")直接從resources根路徑下獲取,SpringBoot中所有檔案都在jar包中,沒有一個實際的路徑,因此可以使用以下方式。
/** * 直接使用getResourceAsStream方法獲取流 * 如果不使用getClassLoader,可以使用getResourceAsStream("/設定測試.txt")直接從resources根路徑下獲取 * * @param fileName * @throws IOException */ public void function5(String fileName) throws IOException { InputStream in = this.getClass().getResourceAsStream("/" + fileName); getFileContent(in); }
通過ClassPathResource類獲取檔案流,SpringBoot中所有檔案都在jar包中,沒有一個實際的路徑,因此可以使用以下方式。
/** * 通過ClassPathResource類獲取,建議SpringBoot中使用 * springboot專案中需要使用此種方法,因為jar包中沒有一個實際的路徑存放檔案 * * @param fileName * @throws IOException */ public void function6(String fileName) throws IOException { ClassPathResource classPathResource = new ClassPathResource(fileName); InputStream inputStream = classPathResource.getInputStream(); getFileContent(inputStream); }
通過絕對路徑獲取專案中檔案的位置,只是本地絕對路徑,不能用於伺服器獲取。
/** * 通過絕對路徑獲取專案中檔案的位置(不能用於伺服器) * @param fileName * @throws IOException */ public void function7(String fileName) throws IOException { String rootPath = System.getProperty("user.dir");//E:WorkSpaceGitspring-framework-learning-example String filePath = rootPath + "\chapter-2-springmvc-quickstart\src\main\resources\"+fileName; getFileContent(filePath); }
通過new File("")獲取當前的絕對路徑,只是本地絕對路徑,不能用於伺服器獲取。
/** * 通過絕對路徑獲取專案中檔案的位置(不能用於伺服器) * @param fileName * @throws IOException */ public void function8(String fileName) throws IOException { //引數為空 File directory = new File(""); //規範路徑:getCanonicalPath() 方法返回絕對路徑,會把 .. 、. 這樣的符號解析掉 String rootCanonicalPath = directory.getCanonicalPath(); //絕對路徑:getAbsolutePath() 方法返回檔案的絕對路徑,如果構造的時候是全路徑就直接返回全路徑,如果構造時是相對路徑,就返回當前目錄的路徑 + 構造 File 物件時的路徑 String rootAbsolutePath =directory.getAbsolutePath(); System.out.println(rootCanonicalPath); System.out.println(rootAbsolutePath); String filePath = rootCanonicalPath + "\chapter-2-springmvc-quickstart\src\main\resources\"+fileName; getFileContent(filePath); }
主要是通過設定環境變數,將檔案放在環境變數中,原理也是通過絕對路徑獲取。
範例中我設定了一個環境變數:TEST_ROOT=E:\WorkSpace\Git\spring-framework-learning-example
System.getenv("TEST_ROOT"); System.getProperty("TEST_ROOT")
通過設定環境變數的方式,然後通過絕對路徑獲取檔案
/** * 通過絕對路徑獲取專案中檔案的位置 * * @param fileName * @throws IOException */ public void function9(String fileName) throws IOException { System.setProperty("TEST_ROOT","E:\WorkSpace\Git\spring-framework-learning-example"); //引數為空 String rootPath = System.getProperty("TEST_ROOT"); System.out.println(rootPath); String filePath = rootPath + "\chapter-2-springmvc-quickstart\src\main\resources\"+fileName; getFileContent(filePath); }
到此這篇關於Java實現讀取resources目錄下的檔案路徑的九種方式的文章就介紹到這了,更多相關Java 讀取resources目錄下檔案路徑內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45