Java int类型与String类型互转

时间:2021-12-17 17:42:05

String类型转换为int类型

参考:https://blog.csdn.net/qq_35995940/article/details/78433404?locationNum=5&fps=1

例:

 public class StringToInt {
public static void main(String[] args) {
String str = "1313";
int i = 0; // eg 1
// try {
// i = Integer.parseInt(str);
// } catch (NumberFormatException e) {
// e.printStackTrace();
// } // eg 2
try {
i = Integer.valueOf(str).intValue();
} catch (NumberFormatException e) {
e.printStackTrace();
} i += 1;
System.out.println(i);
}
}

int类型转换为String类型

例:

 public class intToString {
public static void main(String[] args) {
int i = 1314; // eg 1
// String str = String.valueOf(i); // eg 2
// String str = Integer.toString(i); // eg 3
String str = "" + i; System.out.println(str);
}
}