当前位置: 技术问答>java相关
为什么中文显示不出来?
来源: 互联网 发布时间:2017-04-17
本文导语: 下面是我的代码,为什么在text中输入中文在处理完后乱码?英文好使。 访问次数 请输入您的大名: 哈喽!这是你第次访问本站。 继续 | 在写到数据库前用以下方法处理...
下面是我的代码,为什么在text中输入中文在处理完后乱码?英文好使。
访问次数
请输入您的大名:
哈喽!这是你第次访问本站。
继续
访问次数
请输入您的大名:
哈喽!这是你第次访问本站。
继续
|
在写到数据库前用以下方法处理一下:
public static String iso8859togbk(String test)
{
try{
if(strvalue==null)
return null;
else
{
strvalue = new String(strvalue.getBytes("ISO8859_1"), "GBK");
return strvalue;
}
}catch(Exception e){
return null;
}
}
public static String iso8859togbk(String test)
{
try{
if(strvalue==null)
return null;
else
{
strvalue = new String(strvalue.getBytes("ISO8859_1"), "GBK");
return strvalue;
}
}catch(Exception e){
return null;
}
}
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。