我的 Tapestry 应用程序中的登录页面有一个属性,其中存储了用户输入的密码,然后将其与数据库中的值进行比较。如果用户输入的密码包含多字节字符,例如:
áéíóú
...检查 getPassword() 的返回值(相应属性的抽象方法)给出:
áéÃóú
显然,这没有正确编码。然而,Firebug 报告该页面以 UTF-8 提供,因此大概表单提交请求也将以 UTF-8 编码。检查来自数据库的值会生成正确的字符串,因此这似乎不是操作系统或 IDE 编码问题。我没有在 .application 文件中覆盖 Tapestry 的默认值 org.apache.tapestry.output-encoding,Tapestry 4文档指出该属性的默认值是 UTF-8。
那么为什么 Tapestry 在设置属性时会出现编码问题呢?
相关代码如下:
登录.html
<html jwcid="@Shell" doctype='html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"' ...>
<body jwcid="@Body">
...
<form jwcid="@Form" listener="listener:attemptLogin" ...>
...
<input jwcid="password"/>
...
</form>
...
</body>
</html>
登录页面
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE page-specification
PUBLIC "-//Apache Software Foundation//Tapestry Specification 4.0//EN"
"http://jakarta.apache.org/tapestry/dtd/Tapestry_4_0.dtd">
<page-specification class="mycode.Login">
...
<property name="password" />
...
<component id="password" type="TextField">
<binding name="value" value="password"/>
<binding name="hidden" value="true"/>
...
</component>
...
</page-specification>
登录.java
...
public abstract class Login extends BasePage {
...
public abstract String getPassword();
...
public void attemptLogin() {
// At this point, inspecting getPassword() returns
// the incorrectly encoded String.
}
...
}
更新
@Jan Soltis:好吧,如果我检查来自数据库的值,它会显示正确的字符串,所以我的编辑器、操作系统和数据库似乎都正确地编码了值。我还检查了我的 .application 文件;它不包含 org.apache.tapestry.output-encoding 条目,并且 Tapestry 4文档指出此属性的默认值为 UTF-8。我已经更新了上面的描述以反映您的问题的答案。
@myself:找到解决方案。