当前位置: 技术问答>java相关
字符显示问题
来源: 互联网 发布时间:2015-09-20
本文导语: 如何能将字符串中的日文字符变成二进制流存入数据库。 从数据库取出的时候反相变回来,在界面上能正常显示。 最好能提供函数 | 你不就是为了处理显示日文吗? 日问的编码是:Shift_JIS ...
如何能将字符串中的日文字符变成二进制流存入数据库。
从数据库取出的时候反相变回来,在界面上能正常显示。
最好能提供函数
从数据库取出的时候反相变回来,在界面上能正常显示。
最好能提供函数
|
你不就是为了处理显示日文吗?
日问的编码是:Shift_JIS
解决办法:
第一:
在jsp页面加入:
或者在servlet里面
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/html; charset=Shift_JIS");
上面的如果在不行就用如下的方法在数据入库前进行调用:
public static String UnicodeToChinese(String s){
try{
if(s==null||s.equals("")) return "";
String newstring=null;
newstring=new String(s.getBytes("ISO8859_1"),"Shift_JIS");
return newstring;
}
catch(UnsupportedEncodingException e)
{
return s;
}
}
public static String ChineseToUnicode(String s){
try{
if(s==null||s.equals("")) return "";
String newstring=null;
newstring=new String(s.getBytes("Shift_JIS"),"ISO8859_1");
return newstring;
}
catch(UnsupportedEncodingException e)
{
return s;
}
}
日问的编码是:Shift_JIS
解决办法:
第一:
在jsp页面加入:
或者在servlet里面
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/html; charset=Shift_JIS");
上面的如果在不行就用如下的方法在数据入库前进行调用:
public static String UnicodeToChinese(String s){
try{
if(s==null||s.equals("")) return "";
String newstring=null;
newstring=new String(s.getBytes("ISO8859_1"),"Shift_JIS");
return newstring;
}
catch(UnsupportedEncodingException e)
{
return s;
}
}
public static String ChineseToUnicode(String s){
try{
if(s==null||s.equals("")) return "";
String newstring=null;
newstring=new String(s.getBytes("Shift_JIS"),"ISO8859_1");
return newstring;
}
catch(UnsupportedEncodingException e)
{
return s;
}
}