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

2016-01-29 12:08 38 1 收藏

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

【 tulaoshi.com - Java 】

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

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 < strText.length(); i++ ){
    c = strText.charAt(i);
    intAsc = (int)c;
    if(intAsc128){
      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") %

 

来源:http://www.tulaoshi.com/n/20160129/1484800.html

延伸阅读
标签: Java JAVA基础
bugtraq id 1328 class Design Error cve CVE-2000-0499 remote Yes local Yes published June 08, 2000 updated November 10, 2000 vulnerable BEA Systems Weblogic 4.5.1 - Microsoft Windows NT 4.0 BEA Systems Weblogic 4.0.4 - Microsoft Windows NT 4.0 BEA Systems Weblogic 3.1.8 - Microsoft Windows NT 4.0 IBM Websphere Ap...
标签: Web开发
package com.shaccp.web.util; import java.util.List; public class PageBean { /** * * * @author ppy 2008-10-18 14:3:56 * totalRecords 总记录数 * list 保存分页的数据 * pageNo 当前页 * pageSize 页大小 * query 保存用户查询的字符串 * pageAction 操作分页的Servlet或Action(struts) * method (struts中Action对应的meth...
标签: 电脑入门
在WPS排版中经常会遇到对文字进行旋转的情况,我觉得使用WPS文字中的 文本框比较方便(WORD也能插入文本框,但是无法旋转)。我们可以通过WPS文字插入一个文本框,拖动文本框使文字旋转到任意一个角度。 单击插入菜单,指向 文本框,根据需要选择一个 横向或是竖向的文本框。然后在屏幕上拖出一个文本框,输入文字。 如果这时拖动文本框上端的...

经验教程

309

收藏

82
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部