javadocに従って、プロパティファイルはISO-8859-1を使用して読み取られます。
..入力/出力ストリームはISO8859-1文字エンコードでエンコードされます。このエンコーディングで直接表現できない文字は、Unicodeエスケープを使用して記述できます。エスケープシーケンスでは、単一の「u」文字のみが許可されます。native2asciiツールを使用して、プロパティファイルを他の文字エンコードとの間で変換できます。
native2asciiツールを使用してUTF-8プロパティファイルをISO-8859-1プロパティファイルに変換する以外に、カスタムを使用してResourceBundle.Control
、プロパティファイルの読み込みを制御し、そこでUTF-8を使用することもできます。キックオフの例は次のとおりです。
public class UTF8Control extends Control {
public ResourceBundle newBundle
(String baseName, Locale locale, String format, ClassLoader loader, boolean reload)
throws IllegalAccessException, InstantiationException, IOException
{
// The below is a copy of the default implementation.
String bundleName = toBundleName(baseName, locale);
String resourceName = toResourceName(bundleName, "properties");
ResourceBundle bundle = null;
InputStream stream = null;
if (reload) {
URL url = loader.getResource(resourceName);
if (url != null) {
URLConnection connection = url.openConnection();
if (connection != null) {
connection.setUseCaches(false);
stream = connection.getInputStream();
}
}
} else {
stream = loader.getResourceAsStream(resourceName);
}
if (stream != null) {
try {
// Only this line is changed to make it to read properties files as UTF-8.
bundle = new PropertyResourceBundle(new InputStreamReader(stream, "UTF-8"));
} finally {
stream.close();
}
}
return bundle;
}
}
次のように使用します。
ResourceBundle bundle = ResourceBundle.getBundle("com.example.i18n.text", new UTF8Control());
このようにして、native2asciiツールに煩わされる必要がなく、保守しやすいプロパティファイルができあがります。
参照: