`
verytiny
  • 浏览: 368290 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

乱码解决

    博客分类:
  • J2EE
 
阅读更多

   public static String from8859(String source)
   {
       if(source == null)
           return null;
       String s1;
       try
       {
           String s = new String(source.getBytes("iso-8859-1"),"gbk");
           String s2 = s;
           return s2;
       }
       catch(Exception uee)
       {
           s1 = null;
       }
       String s3 = s1;
       return s3;
   }

//往数据写入时用to8859()
   public static String to8859(String source)
   {
       if(source == null)
           return null;
       String s1;
       try
       {
           String s = new String(source.getBytes("gbk"), "iso-8859-1");
           String s2 = s;
           return s2;
       }
       catch(Exception uee)
       {
           s1 = null;
       }
       String s3 = s1;
       return s3;
   }

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics