How to convert ASCII to int?

前端 未结 8 1399
独厮守ぢ
独厮守ぢ 2021-01-17 10:08

I am getting an ASCII value and I want to convert it into an integer because I know it\'s an Integer ASCII value.

int a=53; 

This is an ASC

8条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-17 11:06

    Use Integer.parseInt() static method:

    Oracle Docs Integer.parseInt()

提交回复
热议问题