首页 > 代码库 > JAVA基本类型的转换
JAVA基本类型的转换
1、String转成Int
例1: String str = "123"; try { int a = Integer.parseInt(str); } catch (NumberFormatException e) { e.printStackTrace(); }
例2: String str = "123"; try { int b = Integer.valueOf(str).intValue() } catch (NumberFormatException e) { e.printStackTrace(); }
2、Double转成Int
例1: double d = 12.0; int i = (new Double(d)).intValue();
例2: double d = 12.0; int i = (int)d;
3、Integer转成String
Integer it = new Integer(10); String str = it.toString();
4、Integer转int
Integer转换成int的方法 Integer i = new Integer(10); int k = i.intValue(); 即Integer.intValue();
5、int转Integer
int转换成Integer int i = 10; Integer it = new Integer(i);
6、String转BigDecimal
String转换成BigDecimal BigDecimal bd = new BigDecimal(str);
7、double类型转成String顺便格式化
double wcl=0.00;//完成率 String zzwcl=new java.text.DecimalFormat("0.00").format(wcl);//最终完成率 double装换成String顺便格式化
JAVA基本类型的转换
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。