Java是一種流行的編程語言,能夠輸出和輸入數據是Java編程的基礎。下面將介紹Java中常用的輸出和輸入方法。
1. 輸出
// 輸出到控制臺 System.out.println("Hello, world!"); // 輸出到文件 File file = new File("output.txt"); PrintWriter writer = new PrintWriter(file); writer.println("Hello, world!"); writer.close();
2. 輸入
// 從控制臺輸入 Scanner scanner = new Scanner(System.in); System.out.print("請輸入數字:"); int num = scanner.nextInt(); System.out.println("輸入的數字是:" + num); // 從文件輸入 File file = new File("input.txt"); Scanner scanner = new Scanner(file); while (scanner.hasNextLine()) { String line = scanner.nextLine(); System.out.println(line); } scanner.close();
以上是Java中輸出和輸入的常用方法。需要注意的是,輸出和輸入數據的方式取決于具體的場景和需求,需要根據實際情況選擇合適的方式。