java有没有办法将int转换为ascii符号?
Is there a way for java to convert int's to ascii symbols?
你想把 int
s 转换成 char
s 吗?:
Do you want to convert int
s to char
s?:
int yourInt = 33;
char ch = (char) yourInt;
System.out.println(yourInt);
System.out.println(ch);
// Output:
// 33
// !
还是要将 int
s 转换为 String
s?
Or do you want to convert int
s to String
s?
int yourInt = 33;
String str = String.valueOf(yourInt);
或者你的意思是什么?
这篇关于Java - 将 int 更改为 ascii的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!