java整数转换成字符串
❶ java怎么把数字转换成字符串
各种数字类型转换成字符串型:
String s = String.valueOf( value); // 其中 value 为任意一种数字类型。
字符串型转换成各种数字类型:
String s = "169";
byte b = Byte.parseByte( s );
short t = Short.parseShort( s );
int i = Integer.parseInt( s );
long l = Long.parseLong( s );
Float f = Float.parseFloat( s );
Double d = Double.parseDouble( s );
数字类型与数字类对象之间的转换:
byte b = 169;
Byte bo = new Byte( b );
b = bo.byteValue();
short t = 169;
Short to = new Short( t );
t = to.shortValue();
int i = 169;
b = bo.byteValue();
short t = 169;
Short to = new Short( t );
t = to.shortValue();
int i = 169;
Integer io = new Integer( i );
i = io.intValue();
long l = 169;
Long lo = new Long( l );
l = lo.longValue();
float f = 169f;
Float fo = new Float( f );
f = fo.floatValue();
double d = 169f;
Double dObj = new Double( d );
d = dObj.doubleValue();
❷ java中怎么将数字转换成字符串
toString()方法转换成字符串。
❸ java如何int转string
java int类型转换String类型方法有:用 int i+""、用String.valueOf(),还可以直接强制类型转换。
❹ 怎么用Java语言将数字转化成字符串
java里大部分的对象都有toString()方法,所以你可以用toString()方法转换成字符串
比如一个int型
int
num
=10000;
String
arg
=
num.toString();
❺ java整型转换成字符串 叫什么
整型转换成字符型
1.整型转换成字符型
String num = Integer.toString(int n);
2.Long型转换成字符型
String num = Long.toString(long n);
3.Short型转换成字符型
String num = Short.toString(Short n);
4.Float型转换成字符型
String num = Float.toString(Float n);
5.Double型转换成字符型
String num = Double.toString(Double n);
❻ JAVA中整型转换成字符串问题
1.因为你用parse()方法,只能用来将字符串型转换为数值型的。!
不能将整型转换为字符串的的,!否则编译出错。!
2.建议用,Convert()转换,
它能够在各种基本数据类型之间互相转换,!
各种基本数据类型转换如下:
Convert。Tolnt32()转换整型
Convert.Tosingle()转换为单精度浮点型
Convert.ToDouble()转换为双精度浮点型
Convert.ToString()转换为字符串型
❼ java中怎样将整型数据转换为字符串型
publicclassZhuanHuan{
publicstaticvoidmain(String[]args){
//方法一
inti=0;
Stringstr=i+"";
//方法二
intii=0;
Stringstrstr=String.valueOf(ii);
}
}