白痴爱面包 发表于 2023-4-13 22:13:01

使用Io流读入文件发生的问题

用readLine读取文件汉字,为什么是繁体字,同时转存不到另一个文件

isdkz 发表于 2023-4-13 22:15:25

当您使用Java I/O流读取文件时,可能会遇到编码问题。在读取和写入过程中,如果没有正确处理编码,可能会导致字符显示错误。例如,简体汉字可能会显示为繁体汉字。为了解决这个问题,请确保在读取和写入文件时使用正确的字符集(如UTF-8)。以下是一个使用BufferedReader和BufferedWriter正确读取和写入文件的示例:
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;

public class Main {
    public static void main(String[] args) {
      String inputFilePath = "path/to/input/file.txt";
      String outputFilePath = "path/to/output/file.txt";
      
      try {
            readAndWriteFile(inputFilePath, outputFilePath);
      } catch (IOException e) {
            e.printStackTrace();
      }
    }

    public static void readAndWriteFile(String inputFilePath, String outputFilePath) throws IOException {
      File inputFile = new File(inputFilePath);
      File outputFile = new File(outputFilePath);

      try (BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(new FileInputStream(inputFile), "UTF-8"));
             BufferedWriter bufferedWriter = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(outputFile), "UTF-8"))) {
            String line;
            while ((line = bufferedReader.readLine()) != null) {
                bufferedWriter.write(line);
                bufferedWriter.newLine();
            }
      }
    }
}


此示例中,我们使用UTF-8字符集读取输入文件并将其内容写入输出文件。请将path/to/input/file.txt和path/to/output/file.txt替换为您实际的文件路径。

白痴爱面包 发表于 2023-4-13 22:33:37

isdkz 发表于 2023-4-13 22:15
当您使用Java I/O流读取文件时,可能会遇到编码问题。在读取和写入过程中,如果没有正确处理编码,可能会导 ...

如果用FileReader读入而不是用字节流读入呢

isdkz 发表于 2023-4-13 22:37:52

白痴爱面包 发表于 2023-4-13 22:33
如果用FileReader读入而不是用字节流读入呢

如果使用FileReader而不是字节流,您将无法指定编码。FileReader默认使用系统默认的字符编码,这可能导致编码问题。在这种情况下,建议使用InputStreamReader,因为它允许您指定编码。

但是,如果您仍然想使用FileReader,您可以尝试以下示例。请注意,这个示例可能会导致编码问题,因为我们没有明确指定字符集:

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;

public class Main {
    public static void main(String[] args) {
      String inputFilePath = "path/to/input/file.txt";
      String outputFilePath = "path/to/output/file.txt";
      
      try {
            readAndWriteFile(inputFilePath, outputFilePath);
      } catch (IOException e) {
            e.printStackTrace();
      }
    }

    public static void readAndWriteFile(String inputFilePath, String outputFilePath) throws IOException {
      File inputFile = new File(inputFilePath);
      File outputFile = new File(outputFilePath);

      try (BufferedReader bufferedReader = new BufferedReader(new FileReader(inputFile));
             BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(outputFile))) {
            String line;
            while ((line = bufferedReader.readLine()) != null) {
                bufferedWriter.write(line);
                bufferedWriter.newLine();
            }
      }
    }
}


请将path/to/input/file.txt和path/to/output/file.txt替换为您实际的文件路径。但是,为了避免潜在的编码问题,强烈建议您使用InputStreamReader和OutputStreamWriter并明确指定字符集。
页: [1]
查看完整版本: 使用Io流读入文件发生的问题