当前位置: 首页 > 图文教程 > 网络编程 > JSP > jsp中任意文字转Unicode的通用模块

JSP
JSP连接各类数据库大全(6)
小窗口大学问--玩转弹出窗口(2)
Jsp中的session使用
Jsp中数据bean的直接赋值
Jsp/bean Mysql数据库 新增 修改 删除的通用方法
随机数字 浮点数 字符串产生
利用HttpSessionListener统计在线人数
servlet规范定义的Servlet 生命周期
serlvet为什么只需要实现doGet和doPost
servlet实例的个数及因此引发的问题
jsp计数器制作手册(2)
JSP连接各类数据库大全(1)
JSP编程进度条设计实例(3)
JSP编程进度条设计实例(5)
jsp计数器制作手册(1)
JSP编程进度条设计实例(1)
小窗口大学问--玩转弹出窗口(1)
小窗口大学问--玩转弹出窗口(4)
ASP与JSP的比较(1)
JSP连接各类数据库大全(5)

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


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-02   浏览: 48 ::
收藏到网摘: n/a

  /** ToUnicode.java */
package com.edgewww.util;

import java.io.*;

/**
* 字符串转换成Unicode码的类
* @author 栾金奎 [email protected]
* @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 < strText.length(); i++ ){
    c = strText.charAt(i);
    intAsc = (int)c;
    if(intAsc>128){
      strHex = Integer.toHexString(intAsc);
      strRet = strRet + "&#x" + strHex+";";
    }
    else{
      strRet = strRet + c;
    }
  }
  return strRet ;
}

}

/** 应用举例 */
/** gbk2Unicode.jsp */
<meta http-equiv="Content-Type" content="text/html; charset=big5">
<jsp:useBean id="g2u" scope="session" class="com.edgewww.util.ToUnicode"/>
<% String lang = "这是简体中文"; %>
<br>
<%=lang %>
<br>
<%=g2u.toUnicode(lang,"GBK") %>