您现在的位置: 首页 > 微信营销 > 微信动态文章 > jsp中任意文字如何转Unicode的通用模块

jsp中任意文字如何转Unicode的通用模块

作者:pc668   来源:  热度:440  时间:2022-02-27
  ** ToUnicode。java */ package com。edge; import java。io。*; /** * 字符串转换成Unicode码的类 * @author 栾金奎 jsp@shanghai。com * @date 2001-03-05 */ public class ToUnicode { /** * 把字符串转换成Unicode码 * @param strText 待转换的字符串 * @param code

  ** ToUnicode。java */ package com。edge; import java。io。*; /** * 字符串转换成Unicode码的类 * @author 栾金奎 jsp@shanghai。com * @date 2001-03-05 */ public class ToUnicode { /** * 把字符串转换成Unicode码 * @param strText 待转换的字符串 * @param code 转换前字符串的编码,如"GBK" * @return 转换后的Unicode码字符串 */ public String toUnicode(String strText,String code) throws UnsupportedEncodingException{

char c;

String strRet = "" ;

int intAsc;

String strHex;

strText = new String(strText。
  getBytes("8859_1"),code);

for ( int i = 0; i 128){

strHex = Integer。toHexString(intAsc);

strRet = strRet "" strHex ";";

}

else{

strRet = strRet c;

}

}

return strRet ; } } /** 应用举例 */ /** gbk2Unicode。
  jsp */。

登录

使用微信帐号或QQ直接登录,无需注册