skyful

  BlogJava :: 首页 :: 联系 :: 聚合  :: 管理
  16 Posts :: 0 Stories :: 45 Comments :: 0 Trackbacks

public class MyChinese {
  public static String Decode(String s) {
    try {
      return new String(s.getBytes("ISO8859_1"), "gb2312");
    }
    catch (Exception e) {
      return s;
    }
  }

  public static String Encode(String s) {
    try {
      return new String(s.getBytes("gb2312"), "ISO8859_1");
    }
    catch (Exception e) {
      return s;
    }
  }

}

posted on 2006-04-27 11:35 氓氓 阅读(1046) 评论(1)  编辑  收藏

Feedback

# re: jsp中文字符转换函数 2006-08-29 13:45 何乐

public static String decode(String s) {
try {
return new String(s.getBytes("ISO8859_1"), "gb2312");
}
catch (Exception e) {
return s;
}
}  回复  更多评论
  


只有注册用户登录后才能发表评论。


网站导航: