(1)将数字转换成字符串
int
i
=
7
;
double d = 13.56 ;
String str1,str2;
str1 = Integer.toString(i);
str2 = Double.toString(d);
执行以后,str1存的字符串是 " 7 " ,str2存的字符串是 " 13.56 " .
double d = 13.56 ;
String str1,str2;
str1 = Integer.toString(i);
str2 = Double.toString(d);
执行以后,str1存的字符串是 " 7 " ,str2存的字符串是 " 13.56 " .
(2)将字符串转换成数值
String str1
=
"
3532
"
;
String str2 = " 187.863 " ;
Integer m;
Double n;
m = Integer.valueOf(str1); // 将String类型转换成Integer类型
n = Integer.valueOf(str2); // 将String类型转换成Double 类型
int i = m.intValue(); // 将Integer类型转换成int类型
double d = n.doubleValue();
执行以后,整型变量i为3532,浮点型变量为187. 863
String str2 = " 187.863 " ;
Integer m;
Double n;
m = Integer.valueOf(str1); // 将String类型转换成Integer类型
n = Integer.valueOf(str2); // 将String类型转换成Double 类型
int i = m.intValue(); // 将Integer类型转换成int类型
double d = n.doubleValue();
执行以后,整型变量i为3532,浮点型变量为187. 863
(3)从字符串转换成数值的第2种办法
String str1
=
"
3532
"
;
String str2 = " 187.863 " ;
int i = Integer.praseInt(str1);
double d = Double.praseDouble(str2);
执行以后,整型变量i为3532 ,浮点型变量d为187. 863
String str2 = " 187.863 " ;
int i = Integer.praseInt(str1);
double d = Double.praseDouble(str2);
执行以后,整型变量i为3532 ,浮点型变量d为187. 863
(4)日期类型转换
//
把字符串转化成日期类型
import java.sql.Date;
Date date = new Date( 0 );
date.valueOf( " 1983-09-09 " );
// 把日期类型转换成字符串类型
import java.sql.Date;
Date date = new Date( 0 );
date.valueOf( " 1983-09-09 " ).toString();
import java.sql.Date;
Date date = new Date( 0 );
date.valueOf( " 1983-09-09 " );
// 把日期类型转换成字符串类型
import java.sql.Date;
Date date = new Date( 0 );
date.valueOf( " 1983-09-09 " ).toString();
(5)int转成Integer
int
i =
0
;
Integer temp = new Integer( i );
Integer temp = new Integer( i );