您的位置:首页 > 编程语言 > Java开发

java 文件/文件夹 从一个路径拷贝到另一个路径

2016-12-28 18:59 501 查看
只是简单地写了两个函数,第一个函数是将一个文件从oldpath copy到newpath.

拷贝文件夹调用了拷贝文件的方法,将文件夹中的每一个文件依次拷贝过去,具体的代码如下:

从下面的代码中也能看出,我没有使用递归方法拷贝文件夹包含文件夹的情况,如果有需要,只需稍微修改代码即可。

public void copyFile(String strOldpath,String strNewPath)
{
try
{

File fOldFile = new File(strOldpath);
if (fOldFile.exists())
{
int bytesum = 0;
int byteread = 0;
InputStream inputStream = new FileInputStream(fOldFile);
FileOutputStream fileOutputStream = new FileOutputStream(strNewPath);
byte[] buffer = new byte[1444];
while ( (byteread = inputStream.read(buffer)) != -1)
{
bytesum += byteread; //这一行是记录文件大小的,可以删去
fileOutputStream.write(buffer, 0, byteread);//三个参数,第一个参数是写的内容,
//第二个参数是从什么地方开始写,第三个参数是需要写的大小
}
inputStream.close();
fileOutputStream.close();
}
}
catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
System.out.println("复制单个文件出错");
e.printStackTrace();
}
}

public void copyFolder(String strPatientImageOldPath,String strPatientImageNewPath)
{
File fOldFolder = new File(strPatientImageOldPath);//旧文件夹
try
{
File fNewFolder = new File(strPatientImageNewPath);//新文件夹
if (!fNewFolder.exists())
{
fNewFolder.mkdirs();//不存在就创建一个文件夹
}
File [] arrFiles = fOldFolder.listFiles();//获取旧文件夹里面所有的文件
for (int i = 0; i < arrFiles.length; i++)
{
//从原来的路径拷贝到现在的路径,拷贝一个文件
if (!arrFiles[i].isDirectory())
{
copyFile(strPatientImageOldPath+"/"+arrFiles[i].getName(), strPatientImageNewPath+"/"+arrFiles[i].getName());
}
}
}
catch (Exception e)
{
// TODO: handle exception
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: