public static void main(String[] args) throws Exception {
FileInputStream fis = null;
fis = new FileInputStream("D:\\fis.txt");
InputStreamReader isr=new InputStreamReader(fis,"gbk");//这里用转换流
char[] bys = new char[2];
int len = 0;
while((len = isr.read(bys)) != -1){
String str = new String(bys, 0, len);
System.out.println(str);
}
isr.close();
}
我帮你改了一个就可以用了,不知道是不是你要的意思。
|