Oracle 中文支持问题

Oracle中文支持时遇到了很多问题
经过漫长而痛苦的实验后终于解决了!

1、修改注册表HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\KEY_XE
   中的NLS_LANG的值为SIMPLIFIED CHINESE_CHINA.ZHS16GBK

2、
request.setCharacterEncoding("GBK");
response.setContentType("text/html;charset=GBK");
String name = request.getParameter("name");
out.print(new String(name.getBytes("ISO-8859-1"), "GBK"));


你可能感兴趣的:(html,oracle)