My project requires me to write a web application with JSP to communicate with Oracle 10g R2
The JSP/Javascript/HTML is held in OC4J 9i and the database is created with characterset as UTF-8. The interface between JSP and Oracle is based on JDBC Thin driver
I tried to type in some Chinese characters on JSP page, then save to Oracle. In Oracle (SQL Plus), those characters cannot be shown correctly. Then the characters cannot be shown correctly too with ResetSet.getString.
FYI, the page directive for each JSP is already <%@ page contentType='text/html; charset=utf-8' pageEncoding='utf-8'%>
Any hint ?