我在jsf应用程序中显示特殊字符(如é和à)时遇到问题。这些字符显示为问号或é。 因此我尝试了一件简单的事情。我有一个页面,其中有一个表单发布到结果页面,显示已发布的参数。
第1页
<head>
<meta http-equiv="Content-Type" content="text/html; UTF-8">
</head>
<body>
<form method="POST" action="http://localhost:8080/test/result.xhtml" name="data" target="_blank">
<input type="hidden" value="Pierre;DUPONT;5300;Seilles;;Rue des écoles 18;fr;;" name="customer"/>
页面结果
<head>
<meta http-equiv="Content-Type" content="text/html; UTF-8"/>
</head>
<body >
test
<h:inputText value="${param.customer}"/>
</body></html>
结果以uedesécoles代替uedesécoles显示
我正在Eclipse中使用UTF-8上的文本文件编码开发并在tomcat 6.024上运行
我做错了什么?