Java讀取Properties文件時碰到兩問題: java
1. 資源文件中的key對應的value過長時,書寫不方便,須要換行,若直接回車則回車後的內容被忽略 測試
2. 資源文件中的key對應的value須要換行顯示時,若直接回車,則一樣丟掉回車後的部分 ui
要解決這兩個問題其實不是很難,只是你們對properties文件的熟悉程度不太同樣。我就是由於不熟悉之前都是一位換行就能夠了,可是這是不行的。若是是用回車直接換行,則properties文件會自動以某個特殊字符做爲分割符將這行value分割爲key/value的形式。 spa
解決這個問題能夠用"\"這個符號加以分割,以後"\"以後能夠用回車換行。下一行開始以前能夠添加不少空格加以格式化,並且能夠多行以下圖。並且 code
key1=Where did you take the picture?\ It's so beautiful!\ It's so beautiful!\ asdfasdfasd\ asfasdfsdfsadf\ asdfsadfsadfsdf\ asdfsdfasdfsadf\ asdfsadfsdf key2=Spring\nHibernate\nIbatis\nVelocity\nJava/nStruts
測試源碼以下: ci
package com.icbc.ctie.build; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.util.Properties; public class PropertiesTest { public static void main(String[] args){ Properties properties = new Properties(); try { InputStream inputStream = PropertiesTest.class.getClassLoader().getResourceAsStream("test.properties"); /* File property=new File("test.properties"); FileInputStream inputStream=new FileInputStream(property);*/ properties.load(inputStream); inputStream.close(); //關閉流 } catch (IOException e) { e.printStackTrace(); } String key1 = properties.getProperty("key1"); String key2 = properties.getProperty("key2"); System.out.println(key1); System.out.println(key2); } }
上述代碼若是用getResourceAsStream 方法就必須將test.properties文件放到src下或者添加至構建路徑中。不然就是用File直接獲取。 資源