UTF-8转GBK,GBK转UTF-8和逆向native2ASCII

来源:互联网 发布:erp软件评分表 编辑:程序博客网 时间:2024/05/17 04:23

/ /**
 / * 把字符串内码从UTF-8转化成为GBK。
 / *
 / * @param strIn
 / * String 处理前的字符串
 / * @return String 处理后的字符串
 / */
  private String UTF82GBK(String strIn) {
  String strOut = null;
  if (strIn == null || (strIn.trim()).equals("")) {
  return strIn;
  }
  try {
  // 将字符串作内码转换
  byte[] b = strIn.getBytes("UTF-8");
  strOut = new String(b, "GBK");
  } catch (java.io.UnsupportedEncodingException e) {
  return null;
  }
  return strOut;
  }
 
 / /**
 / * 把字符串内码从GBK转化成为UTF-8。
 / *
 / * @param strIn
 / * String 处理前的字符串
 / * @return String 处理后的字符串
 / */
  private String GBK2UTF8(String strIn) {
  String strOut = null;
  if (strIn == null || (strIn.trim()).equals("")) {
  return strIn;
  }
  try {
 // 将字符串作内码转换
  byte[] b = strIn.getBytes("GBK");
  strOut = new String(b, "UTF-8");
  } catch (java.io.UnsupportedEncodingException e) {
  return null;
  }
  return strOut;
  }
}

 

3.逆向native2ASCII

E:/jdk1.5.0/bin>native2ascii   -reverse   f:/ASCII.properties f:/ASCIIEN.propertiesE:/jdk1.5.0/bin>native2ascii   -

原创粉丝点击