• 中文转换成Unicode编码 和 Unicode编码转换为中文


     

    前几天,遇到一个问题,就是在浏览器地址栏传递中文时,出现乱码,考虑了一下,解决方式有很多,我还是采用了转换编码的方式,将中文转换为Unicode编码,然后再解码成中文,以下是实现的过程,非常简单! 
    package cy.code; 

    public class CyEncoder { 
    private String zhStr; //中文字符串 
    private String unicode;//将中文字符串转换为Unicode编码 存储在这个属性上。 

    public CyEncoder(String zhStr){ 
    this.zhStr = zhStr; 


    public String getZhStr() { 
    return zhStr; 


    public void setZhStr(String zhStr) { 
    this.zhStr = zhStr; 


    public String toUnicode(){ 
    StringBuffer unicode = new StringBuffer(); 
    for(int i=0; i<zhStr.length();i++){ 
    char c = zhStr.charAt(i); 
    unicode.append("\u" + Integer.toHexString(c)); 

    this.unicode = unicode.toString(); 
    return unicode.toString(); 

    public String tozhCN(){ 
    StringBuffer gbk = new StringBuffer(); 
    String[] hex = unicode.split("\\u");  // 妈的,分割让我想了半天!!不是"\u",而是 "\\u" 
    for(int i=1;i<hex.length;i++){          // 注意要从 1 开始,而不是从0开始。第一个是空。 
    int data = Integer.parseInt(hex[i],16);  //  将16进制数转换为 10进制的数据。 
    gbk.append((char)data);  //  强制转换为char类型就是我们的中文字符了。 

    System.out.println("这是从 Unicode编码 转换为 中文字符了: "  +gbk.toString()); 
    return gbk.toString(); 

    public static void main(String args[]){ 

    CyEncoder fc = new CyEncoder("为布局发的说法"); 
    System.out.println(fc.toUnicode()); 
    fc.tozhCN(); 

    (转自:http://w2c2y2.iteye.com/blog/468140)
  • 相关阅读:
    C++程序设计实验-3
    函数
    C++简单程序设计
    C++程序设计实验-2
    C++程序设计实验-1
    项目总结
    团队测试计划
    第二阶段团队绩效评分
    第二阶段scrum-10
    第二阶段scrum-9
  • 原文地址:https://www.cnblogs.com/fengweixin/p/3835851.html
Copyright © 2020-2023  润新知