如何使用é,è,à等重音字符处理字符串? 我改为\ u00E9 \ u00E0 \ u00EE \ u00FB \ u00FC。 是否有适用的特殊编码?
[UPDATE]
在下面找到HTML代码和相关的Java代码。
var errors = XDocument.Parse(yourxmlstring)
.Descendants("errors")
.Select(e => new
{
code = (int)e.Element("code"),
desc = (string)e.Element("description")
})
.ToList();
调用上面的html的Java代码:
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title ></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<span th:text="|${proposition.commentaireProposition}|"></span>
</body>
</html>
proposition.commentaireProposition包含未在html中正确显示的é,è,à字符
谢谢。