You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by nsg <ns...@trans-cosmos.com.cn> on 2002/03/14 13:51:07 UTC

Field cannot disply normally!

Hi,

I am developping one Japanese project.
The Japanese data retrieved from database,i put them into one Hashtable.
check Hashtable,Japanese data  have  been stored correctly.
but  while i display the data in jsp page using the following code:

<logic:iterate id="jsp_user" name="users" property="users">
          <tr>
            <td><bean:write name="jsp_user" property="userid"
filter="true"/>&nbsp;</td>
            <td><bean:write name="jsp_user" property="userName"
filter="true"/>&nbsp;</td>
            <td><bean:write name="jsp_user" property="shikaku"
filter="true"/>&nbsp;</td>
            <td><bean:write name="jsp_user" property="email"
filter="true"/>&nbsp;</td>
   <td><bean:write name="jsp_user" property="memo"
filter="true"/>&nbsp;</td>
    </tr>
 </logic:iterate>

the data containing Japanese cannot display correctly,display as
"???????????".
anybody can tell me what reason causes the problem?

Thanks in advance

Laker