软件编程
位置:首页>> 软件编程>> java编程>> java unicode转码为中文实例

java unicode转码为中文实例

  发布时间:2021-08-14 04:44:14 

标签:unicode转码


package com.infomorrow.parser_report;

import org.junit.Test;

public class Decode {
    @Test
    public void test(){
        String uString = "\\u9053\\u8def";
        System.out.println(ascii2native(uString));//道路
    }

    public static String ascii2native(String ascii) { 
        int n = ascii.length() / 6; 
        StringBuilder sb = new StringBuilder(n); 
        for (int i = 0, j = 2; i < n; i++, j += 6) { 
            String code = ascii.substring(j, j + 4); 
            char ch = (char) Integer.parseInt(code, 16); 
            sb.append(ch); 
        } 
        return sb.toString(); 
    } 
}

0
投稿

猜你喜欢

手机版 软件编程 asp之家 www.aspxhome.com