在Java中,可以使用Integer類的parseInt()方法將字符串轉換為整數。這個方法的使用方法如下:
String str = "123"; // 要轉換的字符串
int num = Integer.parseInt(str); // 將字符串轉換為整數
另外,如果要處理可能包含非數字字符的字符串,可以使用try-catch塊來捕獲NumberFormatException異常,以處理轉換失敗的情況。
String str = "123a"; // 要轉換的字符串
try {
int num = Integer.parseInt(str); // 將字符串轉換為整數
System.out.println(num);
} catch (NumberFormatException e) {
System.out.println("字符串無法轉換為整數");
}