免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1022 | 回复: 0
打印 上一主题 下一主题

ASCII码转换 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-04-10 08:12 |只看该作者 |倒序浏览

public class Ascii {
    public static void main(String args[]) {
        String str;
        if (args != null && args.length > 0) {
            str = args[0];
        } else {
            str = "0068%u0074%u0074%u0070%u003A%u002F%u002F%u0032%u0063%u0070%u0069%u0063%u0031%u0032%u002E%u0079%u006F%u0075%u0072%u006F%u0075%u0072%u002E%u0063%u006F%u006D%u002F%u006A%u002F%u8857%u9738%u2162%u002F%u8857%u9738%u2162%u005F%u0043%u0048%u0030%u0030%u0031%u002F%u0053%u0046%u0049%u0049%u0049%u004E%u0065%u0077%u0047%u0065%u006E%u0065%u0072%u0061%u0074%u0069%u006F%u006E%u005F%u0030%u0030%u0031%u005F%u0030%u0034%u0035%u002E%u006A%u0070%u0067";
        }
        String strs[] = str.split("%u");
        char[] chars = new char[strs.length];
        
//        for (int i=0; i
//            if (strs.equals("")) {
//                System.out.println(i);
//            }
//        }
        for (int i=0; istrs.length; i++) {
            chars = (char)Integer.parseInt(strs, 16);
        }
        
        String result = new String(chars);
        System.out.println(result);
    }
}


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/39889/showart_524800.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP