加载中…
个人资料
  • 博客等级:
  • 博客积分:
  • 博客访问:
  • 关注人气:
  • 获赠金笔:0支
  • 赠出金笔:0支
  • 荣誉徽章:
正文 字体大小:

Java--ASCII码与中文字符串相互转换

(2011-03-14 15:22:43)
标签:

it

分类: Java学习


package com.ykmaiz.Test;   
  
import java.io.UnsupportedEncodingException;   
  
public class Test {   
    public static void main(String[] args) throws UnsupportedEncodingException {   
        fun1();// ASCII转换为字符串   
  
        fun2();// 字符串转换为ASCII码   
  
     
  
    public static void fun1() {// ASCII转换为字符串   
  
        String s = "22307 35806 24555 20048";// ASCII码   
  
        String[] chars = s.split(" ");   
        System.out.println("ASCII 汉字 \n----------------------");   
        for (int i = 0; i < chars.length; i++) {   
            System.out.println(chars[i] + " "  
                    + (char) Integer.parseInt(chars[i]));   
         
     
  
    public static void fun2() {// 字符串转换为ASCII码   
  
        String s = "新年快乐!";// 字符串   
  
        char[] chars = s.toCharArray(); // 把字符中转换为字符数组   
  
        System.out.println("\n\n汉字 ASCII\n----------------------");   
        for (int i = 0; i < chars.length; i++) {// 输出结果   
  
            System.out.println(" " + chars[i] + " " + (int) chars[i]);   
         
     


0

阅读 收藏 喜欢 打印举报/Report
  

新浪BLOG意见反馈留言板 欢迎批评指正

新浪简介 | About Sina | 广告服务 | 联系我们 | 招聘信息 | 网站律师 | SINA English | 产品答疑

新浪公司 版权所有