原文链接:小宁博客[添加链接描述](https://www.sunxiaoning.com/language/634.html)
int转换为String(int i=100)
第一种方法:s=i+""; //会产生两个String对象
第二种方法:s=String.valueOf(i); //直接使用String类的静态方法,只产生一个对象。
String转换为int(Sting s=“100”)
第一种方法:i=Integer.parseInt(s); //直接使用静态方法,不会产生多余的对象,但会抛出异常
第二种方法:i=Integer.valueOf(s).intValue();//Integer.valueOf(s) 相当于 new Integer(Integer.parseInt(s)),也会抛异常,但会多产生一个对象,
字符串转换为float
float f = Float.parseFloat(str);
字符串转double
String str = “123.002”;Double d ;d = Double.parseDouble(str);
String转换为byte[]
String string = “hello world”;
byte[] bytes = string.getBytes();
byte[]转换为String
String s = new String(bytes);
通过Base64将String与byte进行转换
import java.util.Base64;
public class test
{
public static void main(String[] args)
{
byte[] bytes = "hello world".getBytes();
String encoded = Base64.getEncoder().encodeToString(bytes);
byte[] decoded = Base64.getDecoder().decode(encoded);
for(byte a : decoded)
System.out.println(a);
System.out.println( new String(decoded) );
}
}
String转换为数组
String str = “a,b,bb,dd”;
- String[] strArr = str.split(",");
- char[] charArr = str.toCharArray();
- byte[] byteArr = str.getBytes();
字符数组转换为字符串:
char[] c1 = {‘a’,‘b’,‘c’};String str = new String(c1);
原文链接:小宁博客[添加链接描述](https://www.sunxiaoning.com/language/634.html)