码迷,mamicode.com
首页 > 编程语言 > 详细

java 字符与ASCII码互转

时间:2018-02-24 15:01:09      阅读:764      评论:0      收藏:0      [点我收藏+]

标签:直接   asc   强制转换   转换   print   system   方法   span   post   

 

字符转对应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);

 

java 字符与ASCII码互转

标签:直接   asc   强制转换   转换   print   system   方法   span   post   

原文地址:https://www.cnblogs.com/ooo0/p/8465237.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!