I use spring.
And config it in web.xml

    <filter>
        <filter-name>SetCharacterEncoding</filter-name>
        <filter-class>org.springframework.web.filter.CharacterEncodingFilter
</filter-class>
        <init-param>
            <param-name>encoding</param-name>
            <param-value>utf-8</param-value>
        </init-param>
    </filter>
    <filter-mapping>
        <filter-name>SetCharacterEncoding</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

This makes the text fields with file-upload work in correctly!



2008/3/7, Angelo Chen <[EMAIL PROTECTED]>:
>
>
> Hi Yuan,
>
> yes, the problem now is, file upload, if you have a textfield mixed with
> file upload, the input will have garbage.
>
>
>
> yuan gogo wrote:
> >
> > This problem has been resolved.
> >
> > I'm Chinese too :-)
> >
> >
> >
>
>
> --
> View this message in context:
> http://www.nabble.com/T5%3A-Chinese-in-form-submission%285.0.11%29-tp15866978p15890060.html
>
> Sent from the Tapestry - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

Reply via email to