在Eclipse中怎么将*.properties文件中输入属性中文读取出来

2024年11月28日 21:40
有3个网友回答
网友(1):

*.properties文件中输入属性中文读取出来的方法:
因为字节流是无法读取中文的,所以采取reader把inputStream转换成reader用字符流来读取中文。代码如下:
Properties properties = new Properties();
InputStream inputStream = this.getClass().getResourceAsStream("/menu.properties");
BufferedReader bf = new BufferedReader(new InputStreamReader(inputStream));
properties.load(bf);
System.out.println(properties.getProperty("a"));

网友(2):

public String getValue(String key) throws Exception{
Properties properties = new Properties();
//文件被放在classes的根路径下,如果不在自己改
InputStream in =PropertyUtil.class.getClassLoader
().getResourceAsStream("demo.properties");
properties.load(in);
String value =new String (properties.getProperty(key).getBytes("ISO-8859-1"),"GBK");
return value;
}

网友(3):

不知道你说是不是关于国际化的问题。