J
jinsfu
Unregistered / Unconfirmed
GUEST, unregistred user!
我的机器配置是:win2000/tomcat4.0.1/jdk1.3.1/sql server2000
用jsp页面上传表单数据,英文没问题,但种文字符显示乱码。
我调用了getstr()函数,但仍然不行。
<%!
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 fe){
out.println(fe.getMessage());
}
}
%>
用jsp页面上传表单数据,英文没问题,但种文字符显示乱码。
我调用了getstr()函数,但仍然不行。
<%!
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 fe){
out.println(fe.getMessage());
}
}
%>