将ascii转换为int?

时间:2011-04-19 10:44:54

标签: java

  

可能重复:
  Convert ascii to int ??

int a=53 

这是一个5的ASCII值,我希望将其转换为整数

1 个答案:

答案 0 :(得分:3)

你在找这样的东西吗?

int asciiValue = 53;
int numericValue = Character.getNumericValue(asciiValue);

System.out.println(numericValue);