这个要根据文档的编码来处理,可以用read(bytes); new String(bytes, "gbk"); // 或其它编码ucs2,utf8之类的。
用FileReader..read()方法 一次读取1个字符
文件读写乱码问题
读文件:
InputStreamReader isr = new InputStreamReader(new FileInputStream(
filePath), charsetName);
写文件:
OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream(
filePath), charsetName);
照我的代码写就可以了。
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();
}
}