2021-01-11-getResourceAsStream中文乱码-p3c标题名显示为中文
p3c
Alibaba Java Coding Guidelines pmd implements and IDE plugin
项目地址:https://gitcode.com/gh_mirrors/p3/p3c
免费下载资源
·
参考:
https://blog.csdn.net/weixin_33881041/article/details/94735867
try (InputStream stream = PmdRulesDefinition.class.getResourceAsStream("/org/sonar/l10n/pmd.properties")) {
properties.load(stream);
} catch (IOException e) {
throw new IllegalArgumentException("Could not read names from properties", e);
}
优化后
try (InputStream stream = PmdRulesDefinition.class.getResourceAsStream("/org/sonar/l10n/pmd.properties")) {
// 解决 p3c 中文标题乱码问题
properties.load(new InputStreamReader(stream, StandardCharsets.UTF_8));
} catch (IOException e) {
throw new IllegalArgumentException("Could not read names from properties", e);
}
GitHub 加速计划 / p3 / p3c
30.31 K
8.06 K
下载
Alibaba Java Coding Guidelines pmd implements and IDE plugin
最近提交(Master分支:1 个月前 )
6c59c8c3
We optimized two issues in the original document. 2 年前
22ab84e9 - 2 年前
更多推荐
已为社区贡献1条内容
所有评论(0)