java 用readline()读取带有汉字的文本文档,怎样才能做到不乱码

2024-12-01 01:06:03
推荐回答(4个)
回答1:

这个要根据文档的编码来处理,可以用read(bytes); new String(bytes, "gbk"); // 或其它编码ucs2,utf8之类的。

回答2:

用FileReader..read()方法 一次读取1个字符

回答3:

文件读写乱码问题

读文件:
InputStreamReader isr = new InputStreamReader(new FileInputStream(
filePath), charsetName);

写文件:
OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream(
filePath), charsetName);

回答4:

照我的代码写就可以了。
import java.io.FileReader;

public class reader {

public static void main(String args[]) throws Exception{

FileReader a=new FileReader("1.txt");

int c;

while((c=a.read())!=-1){

System.out.print((char)c);
}

a.close();

}
}