概述根据一个字符获取它在ASCII表中对应的值,办法有两种: 将字符强转为int类型 使用Integer.valueOf()方法 实现将字符强转为int类型123456789101112/** * @author LeDao * @company * @create 2021-06-21 12:38 */public class Test { public static void main(String[] args) { char c = 'a'; System.out.println((int) c); }} 使用Integer.valueOf()方法123456789101112/** * @author LeDao * @company * @create 2021-06-21 12:38 */public class Test { public static void main(String[] args) { char c = 'a'; System.out.println(Integer.valueOf(c)); }}