| Author |
question about chinese in struts
|
Jason Wu
Greenhorn
Joined: Sep 03, 2002
Posts: 13
|
|
i found it's the Strut tag that's _NOT_ handling the utf-8 encoding correctly. I outputted the following on my result jsp after the chinese is inputted: Here, the 'name' is inputted in Chinese and encoded as utf-8: .... <H1> With the Bean Write tag </H1> NAME=====><bean:write name="loginForm" property="name"/> <BR> password ==><bean:write name="loginForm" property="password"/> <HR> <H1> With the standard Http request object </H1> Name==><%= request.getParameter("name")%><BR> password==><%= request.getParameter("password")%><BR> With the bean:write tag the name is printed out as ???, while the standard request object display the chinese characters correctly. Can someone clarify why this is the case? I thought this would not matter since reflection is doing the same call using request.getParameter("property") to map the input to the form's property.
|
 |
Tim Holloway
Saloon Keeper
Joined: Jun 25, 2001
Posts: 14568
|
|
You'd get better results asking in the Frameworks (Struts) forum where more people would know what you're talking about. However, the new Struts (still in Beta) has as one of its primary goals significant improvements in I18N. The 1.0.2 release was a good start, but not good enough.
|
Customer surveys are for companies who didn't pay proper attention to begin with.
|
 |
Simon Brown
sharp shooter, and author
Ranch Hand
Joined: May 10, 2000
Posts: 1860
|
|
|
Moving to the Java frameworks forum...
|
 |
 |
|
|
subject: question about chinese in struts
|
|
|