1.文件流FileInputStream和FileOutputStream里面的路径必须具体到文件里面要不然无法读取内容,并且读取文件里面的内容后,如果新文件里面的内容与旧文件里面的内容重复的话,新文件里面的内容会覆盖旧文件里面的内容。fileInputStream从指定文件夹里获取文件,fileOutputStream将获取的文件写在指定的路径下。
例如:
//创建输入输出对象标签:文件,里面,菜鸟,扩展,len,内容,FileOutputStream,FileInputStream From: https://www.cnblogs.com/1234kang/p/17289413.html
FileInputStream fis = new FileInputStream("F:\\abc\\a\\a.txt");
FileOutputStream fos = new FileOutputStream("F:\\abc\\b\\b.txt");
//定义读操作
int len;
while ((len=fis.read())!=-1){
fos.write(len);
}