java 字符与ASCII码互转

 

字符转对应ASCII码

// 方法一:将char强制转换为byte
char ch = 'A';
byte byteAscii = (byte) ch;
System.out.println(byteAscii);

// 方法二:将char直接转化为int,其值就是字符的ascii
int byteAscii1 = (int) ch;
System.out.println(byteAscii1);

 

ASCII码转字符

// 直接int强制转换为char
int ascii = 65;
char ch1 = (char)ascii;
System.out.println(ch1);

 

posted @ 2018-02-24 13:16  草木物语  阅读(18965)  评论(0编辑  收藏  举报