在Java中,可以使用Scanner
類來接收用戶的時間輸入。以下是一個示例代碼片段,演示如何接收用戶輸入的時間。
import java.util.Scanner;
public class TimeInputExample {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("請輸入時間(格式為HH:mm:ss):");
String timeString = scanner.nextLine();
try {
String[] timeParts = timeString.split(":");
int hours = Integer.parseInt(timeParts[0]);
int minutes = Integer.parseInt(timeParts[1]);
int seconds = Integer.parseInt(timeParts[2]);
System.out.println("您輸入的時間是:" + hours + "時" + minutes + "分" + seconds + "秒");
} catch (NumberFormatException | ArrayIndexOutOfBoundsException e) {
System.out.println("輸入的時間格式不正確");
}
scanner.close();
}
}
運行以上代碼,將提示用戶輸入時間,并按照“小時:分鐘:秒鐘”的格式輸入。然后,程序將解析用戶輸入的時間,并打印出各個時間部分的值。
注意:上述代碼只是一個簡單示例,沒有進行嚴格的輸入驗證和錯誤處理。在實際的應用程序中,您可能需要添加更多的驗證和錯誤處理邏輯,以確保用戶輸入的時間格式正確。