复制文件:
如:将C盘一个文本文件复制到D盘。
原理:其实就是将C盘下的文件数据存储到D盘的一个文件中。
步骤:1.在D盘创建一个文件,用于存储C盘文件中的数据。
2.定义读取流和C盘文件关联。
3.通过不断的读写完成数据存储。
4.关闭资源
/*
复制文件
*/
/*
import java.io.*;
class Demo
{
public static void main(String[] args)throws Exception
{
copy();
}
public static void copy()throws Exception
{
FileReader fr=null;
FileWriter fw=null;
try
{
//与已有文件关联
fr=new FileReader("duotai.java");
//建立目的地
fw=new FileWriter("duotai_copy.txt");
char[] arr=new char[2024];
int num=0;
while((num=fr.read(arr))!=-1)//读取字符存储到数组中,read(arr)返回的是读取的个数
fw.write(arr,0,num);//打印指定字符
}
catch (IOException e)
{
throw new RuntimeException("复制失败");
}
finally
{
if(fr!=null)
try
{
fr.close();
}
catch (IOException e)
{
}
if(fw!=null)
try
{
fw.close();
}
catch (IOException e)
{
}
}
}
}
*/ |
|