分析如上面的图,文件路径在代码中与上图不相同
public class CopyTxtDemo { public static void main(String[] args)throws IOException { //1.根据数据源创建字节输入流对象 FileInputStream fis = new FileInputStream("F:\\java\\JavaEE.txt"); //2.根据目的地创建字节输出流对象 FileOutputStream fos = new FileOutputStream("myFile\\JavaEE.txt"); //3.读写数据 int by; while ((by=fis.read())!=-1){ fos.write(by); } //4.释放资源 fis.close(); fos.close(); } }
运行结果:
------------>