java中String,int,Integer,chardouble类型转换
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中String,int,Integer,chardouble类型转换相关的知识,希望对你有一定的参考价值。
转自 http://blog.csdn.net/zhang103886108/article/details/42917693
1、如何将字串 String 转换成整数 int?
int i = Integer.valueOf(my_str).intValue();
int i=Integer.parseInt(str);
2、如何将字串 String 转换成Integer ?
Integer integer=Integer.valueOf(str);
3、如何将整数 int 转换成字串 String ?
1.) String s = String.valueOf(i);
2.) String s = Integer.toString(i);
3.) String s = "" + i;
4、如何将整数 int 转换成Integer ?
Integer integer=new Integer(i);
6、如何将Integer 转换成 int ?
int num=Integer.intValue();
12、String转double
String s;
double ss=Double.parseDouble(s);
注:parseDouble parseInt 返回的是double。
Double 和 Integer 是double和int的封装类 当需要转换成string类型的时候 需要用到。
以上是关于java中String,int,Integer,chardouble类型转换的主要内容,如果未能解决你的问题,请参考以下文章