当前位置: 技术问答>java相关
訪問ACCESS的.mdb數據庫, 為仕麼顯示結果亂碼.
来源: 互联网 发布时间:2017-03-24
本文导语: 訪問ACCESS的.mdb數據庫, 為仕麼顯示結果亂碼, 哪位哥們兒能告訴我怎樣顯示中文.謝了! | http://expert.csdn.net/Expert/topic/1165/1165733.xml?temp=.3296625 | 从数据库里面取数的时候,转换...
訪問ACCESS的.mdb數據庫, 為仕麼顯示結果亂碼, 哪位哥們兒能告訴我怎樣顯示中文.謝了!
|
http://expert.csdn.net/Expert/topic/1165/1165733.xml?temp=.3296625
|
从数据库里面取数的时候,转换一下,
每次取出来的中文用这个函数转换:
private 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 e)
{
}
return "null";
}
%>
每次取出来的中文用这个函数转换:
private 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 e)
{
}
return "null";
}
%>