WALLY URRUTIA wrote:
> Hi, HappY 2000, Im in a horry, I need to process some that comes from a web
> page (a form). Here is my situation, once i recieved a parameter form the web
> form, for example Col�n, it become Col?n the accente letter change to ? . How
> can i change the charset and language in order to fix this problem. I will
> appreciate any help, let know if now a web site where i can see example code..
> thanks in advance..
> and nice 31...haaha!!
>
> bye.
try this code
String s = req.getParameter("name");
BufferedReader reader = new BufferedReader(new InputStreamReader(new
StringBufferInputStream(s), "Big5")); // if ur coding is Big5
return reader.readLine();
___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".
Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html