springboot 读取 config.properties 中文配置 乱码

读取 config.properties 配置中的 operName 中文乱码

解决办法:

String operName = 
new String(operName.getBytes(StandardCharsets.ISO_8859_1),StandardCharsets.UTF_8);

你可能感兴趣的:(spring,boot)