I am using JSF 2.0 and I have text field as
<h:inputText value="#{PersonalInformationDataBean.fullName}">
On the first line of JSF 2.0 page, I have <?xml version='1.0' encoding='UTF-8' ?>
When I print the data of fullName in bean, I get output as ??????
I wanted to save this name into database however I thought of printing this data in Java before I save to DB.
So in PersonalInformationDataBean.java I added line as System.out.println("my name while entering is " + fullName); and I get output as my name while entering is ?????????????
Any idea why this is happening?
Edit 1
PersonalInformationDataBean.java
@ManagedBean(name = "PersonalInformationDataBean")
@SessionScoped
public class PersonalInformationDataBean {
private String fullName;
// getter and setter
public String saveMyData() {
System.out.println("My Data is " + fullName);
}
}
.xhtml page
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:t="http://myfaces.apache.org/tomahawk"
xmlns:ui="http://java.sun.com/jsf/facelets"
>
<h:head>
<title>
<ui:include src="common_pages/titlePage.xhtml" />
</title>
</h:head>
<h:body onload="#{PersonalInformationDataBean.clearAllApplicantData()}">
<h:form id="patentForm" prependId="false" enctype="multipart/form-data">
<table border="0" width="60%">
<tr>
<th width="40%" align="left"><h:outputLabel value="Name" /></th>
<th width="10%">:</th>
<td width="*%">
<h:inputText value="#{PersonalInformationDataBean.fullName}" size="75" id="fullName" required="true" requiredMessage="Please enter full name.">
<f:validator validatorId="fullNameValidator" />
</h:inputText>
<font color="red"><br /><h:message for="fullName"/></font>
</td>
</tr>
Also I have filter where I have below code
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) {
try {
HttpServletRequest req = (HttpServletRequest) request;
HttpServletResponse res = (HttpServletResponse) response;
HttpSession session = req.getSession(true);
String pageRequested = req.getRequestURL().toString();
System.out.println("coding==" + request.getCharacterEncoding());
req.setCharacterEncoding("UTF-8");
res.setCharacterEncoding("UTF-8");
res.setContentType("text/html;charset=utf-8");
Edit 2
When I use below code, I see output properly in Netbeans.
public class NewClass2 {
public static void main(String argv[]) {
System.out.println("שלום");
System.out.println("يشسيبشسيبشسيبشسي");
}
}
Edit 3
I created new Web Application.
I have index.html as below.
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html">
<h:head>
<title>Facelet Title</title>
</h:head>
<h:body>
<h:form prependId="false" id="myForm">
<h:inputText value="#{myBean.myValue}" />
<h:commandButton value="Submit" action="#{myBean.printMe()}" />
</h:form>
</h:body>
</html>
Java file is as below
@ManagedBean(name = "myBean")
@SessionScoped
public class NewClass {
private String myValue;
public String getMyValue() {
return myValue;
}
public void setMyValue(String myValue) {
this.myValue = myValue;
}
public void printMe() {
System.out.println("first line==" + myValue + "==");
System.out.println("second line==يشسيبشسيبشسيبشيس==");
}
}
When I run this project and enter يشسيبشسيبشسيبشيس in textbox, in Netbeans I see as below.
INFO: first line==????????????????==
INFO: second line==????????????????==


fullNamedefinied? A hardcoded bean property? – BalusC Nov 19 '12 at 11:11