JSP乱码问题

2007-04-18 00:06:14

技术资料 JSP Oracle

使用jsp向Oracle插入中文是会出现乱码,解决方法如下:

在jsp页面开头加入:

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

在页面中加入:

<%
request.setCharacterEncoding("GB2312");
%>