当前位置: 技术问答>java相关
如何在jsp中正确显示中文啊!!!!!也是急急急急!!!
来源: 互联网 发布时间:2015-11-17
本文导语: 如何在jsp中正确显示中文啊!!!!!也是急急急急!!! | 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...
如何在jsp中正确显示中文啊!!!!!也是急急急急!!!
|
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 e){ }
return "NULL";
}
public static String toChinese(String strvalue)
{
try{
if(strvalue==null)
return null;
else
{
strvalue = new String(strvalue.getBytes("ISO8859_1"), "BIG5");
return strvalue;
}
}catch(Exception e){
return null;
}
}
public static String toTureAsciiStr(String str)
{
StringBuffer sb = new StringBuffer();
byte[] bt = str.getBytes();
for(int i =0 ;i
try {
String temp_p = str;
byte[] temp_t = temp_p.getBytes("iso-8859-1");
String temp = new String(temp_t);
return temp;
} catch(Exception e){ }
return "NULL";
}
public static String toChinese(String strvalue)
{
try{
if(strvalue==null)
return null;
else
{
strvalue = new String(strvalue.getBytes("ISO8859_1"), "BIG5");
return strvalue;
}
}catch(Exception e){
return null;
}
}
public static String toTureAsciiStr(String str)
{
StringBuffer sb = new StringBuffer();
byte[] bt = str.getBytes();
for(int i =0 ;i