当前位置: 技术问答>java相关
初学者问题(1)--汉字显示乱码
来源: 互联网 发布时间:2015-08-03
本文导语: WebLogic + Jdk1.3 我做了一个Hello World,其中有几个汉字,但显示乱码,改成英文就没问题了。 是不是字符集问题,还是其他什么问题,怎么调整。 | 这个问题是因为weblogic引起的 在weblogic的web....
WebLogic + Jdk1.3
我做了一个Hello World,其中有几个汉字,但显示乱码,改成英文就没问题了。
是不是字符集问题,还是其他什么问题,怎么调整。
我做了一个Hello World,其中有几个汉字,但显示乱码,改成英文就没问题了。
是不是字符集问题,还是其他什么问题,怎么调整。
|
这个问题是因为weblogic引起的
在weblogic的web.xml中加入:
weblogic.jsp.encoding
gb2312
页面上加入:
或者
在weblogic的web.xml中加入:
weblogic.jsp.encoding
gb2312
页面上加入:
或者
|
ultraedie你可以在网上下到破解版
http://www.caiqing.net/
去看看
http://www.caiqing.net/
去看看
|
在代码的第一行加上这段试试
|
1、在控制面板中将区域设置设为英语(美国),再写如下代码:
2、可能是UltraEdit的版本问题,另外再下载一个吧。或者留一个E-mail,我可以发一个给你。
2、可能是UltraEdit的版本问题,另外再下载一个吧。或者留一个E-mail,我可以发一个给你。
|
将参数输入到数据库中:
public String getStr(String str){
try{
String temp_p=str;
byte[] temp_t=temp_p.getBytes(iso-8859-1);
String temp=new String(temp_t);
return temp;
}
catch( Exception ex){}
return null;
}
将数据库中数据输出:
public String getStr(String str){
try{
String temp_p=str;
byte[] temp_t=temp_p.getBytes(gbk);
String temp=new String(temp_t,iso-8859-1);
return temp;
}
catch( Exception ex){}
return null;
}
public String getStr(String str){
try{
String temp_p=str;
byte[] temp_t=temp_p.getBytes(iso-8859-1);
String temp=new String(temp_t);
return temp;
}
catch( Exception ex){}
return null;
}
将数据库中数据输出:
public String getStr(String str){
try{
String temp_p=str;
byte[] temp_t=temp_p.getBytes(gbk);
String temp=new String(temp_t,iso-8859-1);
return temp;
}
catch( Exception ex){}
return null;
}
|
这是9.0的注册机生成的,你试试:
Name:lesini
UnlockKey:R4Z0X-Q105V-00N4A-J307Q
汉字问题很复杂,搜索文章研究一下吧,各平台的解决方法都不一定相同。
关系到数据库读取就更麻烦了。
Name:lesini
UnlockKey:R4Z0X-Q105V-00N4A-J307Q
汉字问题很复杂,搜索文章研究一下吧,各平台的解决方法都不一定相同。
关系到数据库读取就更麻烦了。