如下圖:
public static String getConfig(String key) { Properties pros = new Properties(); String value = ""; try { pros.load(new InputStreamReader(Object.class.getResourceAsStream("/properties.properties"), "UTF-8")); value = pros.get(key).toString(); } catch (IOException e) { log.error(e.getMessage()); } return value; }
以上就是小編為大家帶來的Java讀取properties設定檔時,出現中文亂碼的解決方法全部內容了,希望大家多多支援PHP中文網~
更多Java讀取properties設定檔時,出現中文亂碼的解決方法相關文章請關注PHP中文網!