Java中,Integer与String类型的互相转换是非常常见的,常用的有三种方法:
Integer类中提供的valueOf()方法可以将String类型的数据转换成Integer类型的数据,它的定义如下:
public static Integer valueOf(String s) throws NumberFormatException
其中,s是要转换的String类型的数据,该方法会返回一个Integer类型的数据。如果s不能被解析为一个整数,则会抛出一个NumberFormatException异常。
反过来,Integer类型的数据也可以使用valueOf()方法转换成String类型的数据,它的定义如下:
public static String valueOf(int i)
其中,i是要转换的Integer类型的数据,该方法会返回一个String类型的数据。
Integer类中提供的toString()方法可以将Integer类型的数据转换成String类型的数据,它的定义如下:
public String toString()
该方法会返回一个String类型的数据。
Integer类中提供的parseInt()方法可以将String类型的数据转换成Integer类型的数据,它的定义如下:
public static int parseInt(String s) throws NumberFormatException
其中,s是要转换的String类型的数据,该方法会返回一个int类型的数据。如果s不能被解析为一个整数,则会抛出一个NumberFormatException异常。
以上就是Java中Integer与String类型的互相转换的三种方法,希望对大家有所帮助。
本文链接:http://task.lmcjl.com/news/2498.html