Java讀取配置檔案中文亂碼的問題

2021-08-19 15:17:26 字數 437 閱讀 9620

string filename = "evaluation.properties";

props = new properties();

try catch (ioexception e)

設定了編碼,使用了reader。基本可以解決大多數中文亂碼的問題。

但是還是中文亂碼了。

這裡是重點了。很坑的。因為設定了utf-8,但是我使用的編輯器是idea,預設編碼是gbk!!統一換成utf-8編碼後問題解決。eclipse應該也有這個問題吧。

最後呢,作者水平有限,有什麼問題大家可以提出來共同**學習。

差不多就是這樣,祝大家學習愉快。謝謝。

—— by:軒轔 ——

java 讀取配置檔案

前幾天因為配置檔案的事,線上的job掛掉了,使用的是spring載入配置檔案方式。spring配置如下 test.properties api test.properties decryptpropertyplaceholderconfigurer類如下所示。public class decrypt...

java讀取配置檔案

現今的程式都要求能夠讀寫配置檔案,使得程式的配置資訊能夠很方便地修改。讀取配置檔案通常使用property檔案,下面列舉了從hadoop的hdfs和本地的檔案系統讀取配置的例子。話不多說,上 讀取hdfs配置檔案 public static properties getpropertiesfromh...

java讀取配置檔案property

properties pro new properties try catch filenotfoundexception e catch ioexception e propertynames 返回屬性列表中所有鍵的列舉 enumeration enu2 pro.propertynames whi...