目录
1、Spring 使用@Value 读取.properties文件中文乱码
2、针对*.properties编码转换的几种方法汇集
2.2、针对所需类上注入可使用以下方式来声明编码格式
2.3、不设置编码格式,编写文件时将中文转化为unicode编码
3、Spring 属性说明
4、参考文章
最近在整理SpringBoot相关的学习示例,准备针对多环境不同配置进行整理。发现一个问题,我使用的 *.properties 文件。在写单元测试用例的时候,发现从.properties文件之中读取的文件未乱码;导致单元测试不成功。
在Spring中常常使用.properties对一些属性进行一些基本的配置, Spring 在读取*.properties文件时,默认使用的是ascii码, 这时 我们需要对其编码进行转换.
2.1、在配置spring.xml文件时,声明所需的∗.properties文件时直接使用"utf−8"编码
此种方法目前估计很少人使用啦,此方法在Spring xml配置时代可以使用
@Component
@PropertySource(value = "classpath:themeConfig.properties",encoding = "utf-8")
public class ThemeStyleConfig {
@Value("${clolor}")
private String clolor;
@Value("${themeName}")
private String themeName;
}
曾经写过Java代码读取 文件,需要设置读取文件的格式编码
/**
* properties 转换内容转换为Excel
*/
private void propertiesFileConvertToExcel(String inputPropertieFilePath,String outExcelFileNamePath) {
System.setProperty("file.encoding", "UTF-8");
readPropertiesContent(inputPropertieFilePath);
writePropertiesContentToExcelFile(outExcelFileNamePath);
}
/**
* Excel写回到Properties文件之中
* @param propertiesPath
*/
public void writeExcelToPropertiesFile(String propertiesPath) {
Properties props = new OrderedProperties();
//创建一个文件对象,该对象将指向属性文件的位置
File propertiesFile = new File(propertiesPath);
try {
//通过传递上述属性文件创建FileOutputStream 并且设置每次覆盖重写
FileOutputStream xlsFos = new FileOutputStream(propertiesFile,false);
// 首先将哈希映射键转换为Set,然后对其进行迭代。
Iterator mapIterator = excelContentToPropertiesMap.keySet().iterator();
//遍历迭代器属性
while(mapIterator.hasNext()) {
// extracting keys and values based on the keys
String key = mapIterator.next().toString();
String value = excelContentToPropertiesMap.get(key);
String keys = "Keys";
if(!keys.equals(key)) {
//在上面创建的props对象中设置每个属性key与value
props.setProperty(key, value);
}
}
//最后将属性存储到实属性文件中。
props.store(new OutputStreamWriter(xlsFos, "utf-8"), null);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
并且最近使用Maven的一个插件也遇到类似问题。
这个其实是 maven-resources-plugins 搞得鬼,无论如何修改编码都不行。最后没辙了,只好把中文强制修改为 unicode,虽然不利用阅读,但是解决了问题。
问题地址:maven filter 中文乱码,应该用什么思路解决?
2.4、使用IntelliJIDEA 如下图操作即可解决
属性说明
Spring使用@Value注释读取.properties文件
@Value读取配置文件,中文字符乱码