java把byte,short,int,long,float,double,char,boolean转换成字符串 把字符串转换成byte,short,int,long,float,double,char,boolean
时间: 2023-07-27 07:18:36 浏览: 124
Java中提供了以下方法可以进行类型之间的转换:
1. 将基本数据类型转换为字符串:
```java
byte b = 1;
String strByte = Byte.toString(b); // byte 转换为字符串
short s = 2;
String strShort = Short.toString(s); // short 转换为字符串
int i = 3;
String strInt = Integer.toString(i); // int 转换为字符串
long l = 4L;
String strLong = Long.toString(l); // long 转换为字符串
float f = 5.0f;
String strFloat = Float.toString(f); // float 转换为字符串
double d = 6.0;
String strDouble = Double.toString(d); // double 转换为字符串
char c = 'a';
String strChar = Character.toString(c); // char 转换为字符串
boolean bool = true;
String strBool = Boolean.toString(bool); // boolean 转换为字符串
```
2. 将字符串转换为基本数据类型:
```java
String str = "123";
byte b = Byte.parseByte(str); // 字符串转换为 byte
short s = Short.parseShort(str); // 字符串转换为 short
int i = Integer.parseInt(str); // 字符串转换为 int
long l = Long.parseLong(str); // 字符串转换为 long
float f = Float.parseFloat(str); // 字符串转换为 float
double d = Double.parseDouble(str); // 字符串转换为 double
char c = str.charAt(0); // 字符串转换为 char
boolean bool = Boolean.parseBoolean(str); // 字符串转换为 boolean
```
需要注意的是,在进行字符串转换成基本数据类型的时候,如果字符串的格式不符合相应数据类型的规范,会抛出NumberFormatException异常。
阅读全文