import java.io.*;
class StreamTest
{
public static void main(String[] args) throws IOException
{
FileInputStream fis=new FileInputStream("C:\\Users\\dell\\Desktop\\StuIfo.txt");
FileOutputStream fos=new FileOutputStream("C:\\Users\\dell\\Desktop\\StuIfo(复制).txt");
/*FileInputStream fis=new FileInputStream("C:\\Users\\dell\\Desktop\\9.jpg");
FileOutputStream fos=new FileOutputStream("C:\\Users\\dell\\Desktop\\9(复制).jpg");*/
int by=0;
while((by=fis.read())!=-1)
{
fos.write(by);
}
fis.close();
fos.close();
}
}
问题是:字节文件读取流为什么也可以复制纯文本文件(StuIfo.txt文件中包含中文和英文)?
懂得朋友指导一下哈!!
|