用Resin不需要主动的转化,只需要在页首加上
<%@page contentType="text/html;
charset=gb2312" language="java"%>
但用别的工具的话用下面的函数转化吧:
<%
Public String getStr(String str){
Try{
String temp_p=str;
Byte[] temp_t=temp_p.getBytes("ISO8859-1");
String temp=new String(temp_t);
return temp;
}catch(Exception e)
{
}
return "null";
}
%>