fileinputstream读取utf-8
时间: 2023-07-05 16:37:03 浏览: 213
可以使用以下代码来使用 FileInputStream 读取 UTF-8 编码的文件:
```
FileInputStream fis = new FileInputStream("file.txt");
InputStreamReader isr = new InputStreamReader(fis, "UTF-8");
BufferedReader br = new BufferedReader(isr);
String line;
while ((line = br.readLine()) != null) {
System.out.println(line);
}
br.close();
```
其中,`FileInputStream` 用于读取文件,`InputStreamReader` 用于将字节流转换为字符流,并指定字符集为 UTF-8,`BufferedReader` 用于按行读取字符流。
相关问题
file读取utf-8
可以使用以下代码来使用 `File` 读取 UTF-8 编码的文件:
```
File file = new File("file.txt");
BufferedReader reader = new BufferedReader(new InputStreamReader(new FileInputStream(file), "UTF-8"));
String line;
while ((line = reader.readLine()) != null) {
System.out.println(line);
}
reader.close();
```
其中,`File` 用于表示文件,`FileInputStream` 用于读取文件,`InputStreamReader` 用于将字节流转换为字符流,并指定字符集为 UTF-8,`BufferedReader` 用于按行读取字符流。
FileReader怎么读取utf-8与GB2312格式文件不乱吗
要确保在使用 FileReader 读取文件时不出现乱码,需要注意以下几点:
1. 读取文件时需要指定文件的编码格式,如果不指定,默认使用系统默认的编码格式,可能会导致乱码问题。因此,可以使用 `InputStreamReader` 将文件的字节流转换为字符流,并指定正确的编码格式。
2. 如果文件本身没有指定编码格式,那么需要根据文件内容的特征来判断编码格式。例如,GB2312 编码的文件一般以“0xB0 0xA1”或“0xA3 0xAC”开头,而 UTF-8 编码的文件一般以“0xEF 0xBB 0xBF”开头。因此,可以先读取文件的前几个字节,根据这些特征来判断编码格式,然后再使用相应的编码格式读取文件。
下面是一个示例代码,可以读取 utf-8 和 GB2312 格式的文件,并解决乱码问题:
```java
import java.io.*;
public class FileReaderExample {
public static void main(String[] args) {
String fileName = "test.txt";
File file = new File(fileName);
try (FileInputStream fis = new FileInputStream(file);
BufferedInputStream bis = new BufferedInputStream(fis);
InputStreamReader isr = new InputStreamReader(bis, "UTF-8")) {
char[] buffer = new char[(int) file.length()];
isr.read(buffer);
String fileContent = new String(buffer);
System.out.println(fileContent);
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
在上面的示例代码中,我们使用了 `InputStreamReader` 将文件的字节流转换为字符流,并指定了 UTF-8 编码格式。这样可以确保即使文件本身没有指定编码格式,也能正确读取文件内容。
阅读全文