我想在前端输出特殊字符。但是字符串是在后端定义的。我的问题是,html-和java文件编码不同,我看不到箭头。
示例:
HTML
<!-- this html-file is UTF-8 encoded -->
<meta th:if="${myTags.arrow}" th:name="${myTags.arrow}" th:content="${myTags.arrow} "/>
爪哇
// this java-file is ISO-8859-15 encoded
class myTags {
String arrow;
public String getArrow() {
arrow = "➤ #NAME# ";
return arrow;
}
}
我不允许更改编码。你能建议我吗?感谢。