当前位置: 技术问答>java相关
请教JSP中的汉字问题
来源: 互联网 发布时间:2017-04-24
本文导语: 显示为乱码,如何解决? | /** * 中文转码 */ public static String isoToGBK(String aISO) { try { return new String(aISO.getBytes("iso8859-1"), "GBK"); ...
显示为乱码,如何解决?
|
/**
* 中文转码
*/
public static String isoToGBK(String aISO) {
try {
return new String(aISO.getBytes("iso8859-1"), "GBK");
}
catch (Exception e) {
return "转码错误!";
}
}
* 中文转码
*/
public static String isoToGBK(String aISO) {
try {
return new String(aISO.getBytes("iso8859-1"), "GBK");
}
catch (Exception e) {
return "转码错误!";
}
}
|
在页面的开始加上:
在得到变量是用下面的函数进行转换
public String chinese(String source) {
try
{
String _temp = "";
byte[] _byte = source.getBytes("iso-8859-1");
_temp = new String(_byte, "gb2312");
source=_temp;
}
catch (Exception ex)
{
System.out.println(ex.toString());
}
return
在得到变量是用下面的函数进行转换
public String chinese(String source) {
try
{
String _temp = "";
byte[] _byte = source.getBytes("iso-8859-1");
_temp = new String(_byte, "gb2312");
source=_temp;
}
catch (Exception ex)
{
System.out.println(ex.toString());
}
return