Jeff Brown wrote:
>
> Any Japanese JSP developers out there?!
>
> We are localizing an English webserver product to Japanese and are having
> trouble inputting and outputting fullwidth katakana characters.  The other
> developers tell me its a problem with the JSP engine that does not allow you
> to change the encoding of the output stream...  Does this sound reasonable?
> Has anyone either developed Japanese JSP pages or heard of similar problems?

You need to specify the charset for the page, e.g.:

  <%@ page contentType="text/html;charset=Shift_JIS" %>

The page itself must also be stored with the same encoding.

Hans
--
Hans Bergsten           [EMAIL PROTECTED]
Gefion Software         http://www.gefionsoftware.com

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

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to