91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

java util怎樣處理文件的輸入輸出操作

小樊
81
2024-11-23 21:51:35
欄目: 編程語言

在Java中,可以使用java.util包中的類來處理文件的輸入輸出(I/O)操作。以下是一些常用的方法和類:

  1. 使用java.util.Scanner類讀取文件內容:
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;

public class ReadFile {
    public static void main(String[] args) {
        File file = new File("path/to/your/file.txt");
        try (Scanner scanner = new Scanner(file)) {
            while (scanner.hasNextLine()) {
                String line = scanner.nextLine();
                System.out.println(line);
            }
        } catch (FileNotFoundException e) {
            System.out.println("File not found: " + e.getMessage());
        }
    }
}
  1. 使用java.util.BufferedReader類讀取文件內容:
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;

public class ReadFile {
    public static void main(String[] args) {
        File file = new File("path/to/your/file.txt");
        try (BufferedReader reader = new BufferedReader(new FileReader(file))) {
            String line;
            while ((line = reader.readLine()) != null) {
                System.out.println(line);
            }
        } catch (IOException e) {
            System.out.println("Error reading file: " + e.getMessage());
        }
    }
}
  1. 使用java.util.PrintWriter類寫入文件內容:
import java.io.File;
import java.io.FileNotFoundException;
import java.io.PrintWriter;

public class WriteFile {
    public static void main(String[] args) {
        File file = new File("path/to/your/outputfile.txt");
        try (PrintWriter writer = new PrintWriter(file)) {
            writer.println("Hello, World!");
        } catch (FileNotFoundException e) {
            System.out.println("File not found: " + e.getMessage());
        }
    }
}

這些示例展示了如何使用Java的java.util包中的類來讀取和寫入文件。注意,這些示例使用了try-with-resources語句,這是一種自動關閉資源(如文件)的現代方法,可以避免資源泄漏。

0
黎川县| 安义县| 衡东县| 禄劝| 泸水县| 江油市| 乐业县| 新巴尔虎左旗| 鸡泽县| 河源市| 牙克石市| 阆中市| 渭源县| 昌图县| 天全县| 阳原县| 邵武市| 屏南县| 龙州县| 筠连县| 工布江达县| 清水县| 时尚| 宝鸡市| 锡林浩特市| 将乐县| 车险| 仁布县| 武义县| 崇明县| 城固县| 资兴市| 句容市| 沙坪坝区| 景德镇市| 千阳县| 东丽区| 中超| 德兴市| 织金县| 昌图县|