本帖最后由 韩慧阳 于 2012-5-21 09:50 编辑
public static void copy2()
{
FileWriter fw=null;
FileReader fr=null;
try
{
fw=new FileWriter("demo_copy.txt");
fr=new FileReader("demo.java");
char[] buf=new char[1024];
int len=0;
while((len=fr.read(buf))!=-1)
{
fw.write(buf,0,len);
}
}
catch (IOException e)
{
throw new RuntimeException("读写失败");
}
finally
{
if(fr!=null)
try
{
fr.close();
}
catch (IOException e)
{
}
if(fw!=null)
try
{
fr.close();
}
catch (IOException e)
{
}
}
}
这是毕老师视频里的例子,请问为什么这里就是把C盘里的文件复制到D盘下啊??里面也没有指定路径啊。
如果不指定路径默认会在哪个路径下读取、在哪个路径下写入啊? |
|