在Java中,可以使用Integer類的parseInt()方法將字符串轉(zhuǎn)換為整數(shù)。示例如下:
String str = "123";
int num = Integer.parseInt(str);
System.out.println(num); // 輸出:123
如果字符串不是一個有效的整數(shù),將會拋出NumberFormatException異常。因此,在轉(zhuǎn)換之前最好使用try-catch塊來捕獲異常,例如:
String str = "abc";
try {
int num = Integer.parseInt(str);
System.out.println(num);
} catch (NumberFormatException e) {
System.out.println("字符串不能轉(zhuǎn)換為整數(shù)");
}