数字转string
方法一:通过包装类来实现
String s = String.valueOf(n);
方法二:直接通过空字符串+数字的形式转换为字符串
String ss= ""+n;
方法三:强制类型转换
String ss= (String)n;
string转数字
double d=Double.parseDouble(s);
int n = Integer.parseInt(s);
几种不同
- Integer.valueOf(String) 得到一个Integer类型的数字
- Integer.parseInt(String) 得到一个int类型的数字
- Integer.getInteger(String) 方法假设String参数是一个系统属性数值的名称,会读取该系统属性,然后把系统属性的值转换成一个数字。也就是说, Integer.getInteger("12345") 应该是得到 null(假设没有名为12345的系统属性)。
标签:类型转换,JAVA,String,int,数字,Integer,属性 From: https://www.cnblogs.com/jihuiting/p/16740205.html