I guess you have to do the following in order to have the proper encoding 
when retrieving the request:

        if (request.getCharacterEncoding() == null)
            try {
                request.setCharacterEncoding("ISO-8859-1");
            } catch (UnsupportedEncodingException e) {
            }

Then, further calls to request.getParameter("kimeisim") will be properly 
converted and available as the respective UTF-8 strings.

Hope this helps

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine-java/-/xfW2zNzXPwQJ.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to