将 ASCII 代码转换成字符串的 Java 程序


要将 ASCII 转换成字符串,请使用 toString() 方法。使用此方法会返回关联的字符。

假设我们有以下 int 值,可用作我们的 ASCII 码。

int asciiVal = 89;

现在,使用 toString() 方法。

String str = new Character((char) asciiVal).toString();

示例

 在线演示

public class Demo {
   public static void main(String []args) {
      int asciiVal = 87;
      String str = new Character((char) asciiVal).toString();
      System.out.println(str);
   }
}

输出

W

更新日期:2024 年 5 月 31 日

16,000 多次浏览

启动您的 职业

完成课程获取认证

开始学习
广告