Hello Ramesh!

Especially for this case I have
http://tagunov.tripod.com/i18n/i18n.html,

but to be short: when IBM releases a
servlet 2.3 websphere it will finally
get easier,

and for now, AFAIK, the best way to go is:

String preN = request.getParameter("n");
String n = preN != null ?
   new String(
     preN.getBytes("ISO8859_1"),
     "EUC-KR"
   ) : null;

(I tried to ask people for a better solution
 at websphere forum
([EMAIL PROTECTED])
 and their newsgroup
(news://news.software.ibm.com/ibm.software.websphere.usergroup)
 and got no answer,
 anyone knows any other Websphere mail list/news group?
 <[EMAIL PROTECTED]> seems to be dead)

I heard that Websphere 4.5 is expected this spring,
and maybe it will be 2.3 and we'll be able just
get away with

request.setCharacterEncoding("EUC-KR");

like on any other Servlet 2.3 container.

Best regards,
 Anton                            mailto:[EMAIL PROTECTED]

RK> Hi all,

RK>  i am dealing with jsp pages to insert into db2 korean
RK> characters.

RK>  i have the set the charset like the follwoing
RK> <meta http-equiv="Content-Type" content="text/html;
charset=EUC-KR">>

RK> but when the values come from the jspp pages it is all
RK> junk values.

RK> i need the exact korena characters which i typed in
RK> the page.
RK> i am using websphere4.0 vaj4.0

RK> can anybody help me please as iam stuck up with this.



RK> =====

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com

Reply via email to