我有一个UTF-8编码的字符串,它是一串键+值对,需要加载到Properties对象中。我注意到我的初始实现中出现了乱码,经过一些谷歌搜索后我发现这个Question表明我的问题是什么 - 基本上默认使用ISO-8859-1属性。这个实现看起来像
public Properties load(String propertiesString) {
Properties properties = new Properties();
try {
properties.load(new ByteArrayInputStream(propertiesString.getBytes()));
} catch (IOException e) {
logger.error(ExceptionUtils.getFullStackTrace(e));
}
return properties;
}
没有指定编码,因此我的问题。对于我的问题,我无法弄清楚如何链接/创建Reader
/ InputStream
组合以传递给使用提供的Properties.load()
的{{1}}并指定编码。我认为这主要是由于我在I / O流方面缺乏经验以及java.io包中看似庞大的IO实用程序库。
任何建议表示赞赏。
答案 0 :(得分:13)
使用字符串时使用Reader
。 InputStream
s真正用于二进制数据。
public Properties load(String propertiesString) {
Properties properties = new Properties();
properties.load(new StringReader(propertiesString));
return properties;
}
答案 1 :(得分:2)
private Properties getProperties() throws IOException {
ClassLoader classLoader = getClass().getClassLoader();
InputStream input = classLoader.getResourceAsStream("your file");
InputStreamReader inputStreamReader = new InputStreamReader(input, "UTF-8");
Properties properties = new Properties();
properties.load(inputStreamReader);
return properties;
}
然后使用
System.out.println(getProperties().getProperty("key"))
答案 2 :(得分:1)
试试这个:
ByteArrayInputStream bais = new ByteArrayInputStream(propertiesString.getBytes("UTF-8"));
properties.load(bais);