程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> jsp中任意文字轉Unicode的通用模塊

jsp中任意文字轉Unicode的通用模塊

編輯:關於JSP
/** 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") %>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved