Java 中类型转换
Posted CodingPanda
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java 中类型转换相关的知识,希望对你有一定的参考价值。
int -> String
int i=12345;
String s="";
第一种方法:s=i+"";
第二种方法:s=String.valueOf(i);
这两种方法有什么区别呢?作用是不是一样的呢?是不是在任何下都能互换呢?
String -> int
s="12345";
int i;
第一种方法:i=Integer.parseInt(s);
第二种方法:i=Integer.valueOf(s).intValue();
String -> float
Float.parseFloat(name)
String -> Date
java.text.SimpleDateFormat formatter = new SimpleDateFormat( "yyyy-MM-dd ");
String s= "2011-07-09 ";
Date date = formatter.parse(s);
Date->String
java.text.SimpleDateFormat formatter = new SimpleDateFormat( "yyyy-MM-dd ");
String date = formatter.format(new Date());//格式化数据
BigDecimal<-->String
String StrBd="1048576.1024";
BigDecimal bd=new BigDecimal(StrBd); // 转换为bigdecimal
bd=bd.setScale(2, BigDecimal.ROUND_HALF_UP); //设置小数位数,第一个变量是小数位数,第二个变量是取舍方法(四舍五入)
String OutString=bd.toString(); //转化为字符串
以上是关于Java 中类型转换的主要内容,如果未能解决你的问题,请参考以下文章
无法将 java.lang.String 类型的属性值转换为所需的 java.time.LocalDateTime 类型