我正在使用 JSF 2.0,我的文本字段为
<h:form>
<h:inputText value="#{myBean.myValue}" />
<h:commandButton value="Submit" action="#{myBean.printMe()}" />
</h:form>
public void printMe() {
System.out.println("first line==" + myValue + "==");
System.out.println("second line==يشسيبشسيبشسيبشيس==");
}
当我运行这个项目并يشسيبشسيبشسيبشيس
在文本框中输入时,在 IDE 控制台中我看到如下。
INFO: first line==????????????????==
INFO: second line==????????????????==
知道为什么会这样吗?