java文件操作实验.doc_第1页
java文件操作实验.doc_第2页
java文件操作实验.doc_第3页
java文件操作实验.doc_第4页
java文件操作实验.doc_第5页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

一. 实验目的及实验环境 学习并掌握java中文件的操作二. 实验内容将下列文件操作类补充完整class MyFile /获取目录大小 public long getLength(String path); /拷文件 public void copy(String source, String dist); /拷目录(目录需带子目录) public void copyDir(String sourceDir, String distDir);三方案设计1. 获取目录大小:如果是目录则递归计算其内容的总大小,如果是文件则直接返回其大小,以字节为单位2.文件拷贝:将文件分段读入内存中,然后写入新的文件3.目录拷贝:如果是目录则在对应位置新建目录,如果是文件则调用文件拷贝函数进行拷贝import java.io.*;public class FileIO /获取目录大小 public long getLength(String path) File currentFile = new File(path); long size = 0; if(currentFile.isDirectory() File FileList = currentFile.listFiles(); for (int i = 0; i FileList.length; i+) if (FileListi.isDirectory() size = size + getLength(FileListi.getPath(); else size = size + FileListi.length(); return size; else return currentFile.length(); /拷文件 public void copy(String source, String dist) File sourceFile = new File(source); File distFile = new File(dist); try if(!sourceFile.isFile() System.out.println(Path + source + gived is not a file); return ; if(!sourceFile.exists() System.out.println(File Not exist); if(distFile.exists() System.out.println(Dist file + dist + is already exist); else distFile.createNewFile(); int BufferLength=4096;/4k对齐 FileInputStream FileIn=new FileInputStream(sourceFile); FileOutputStream FileOut=new FileOutputStream(distFile); byte buffer=new byteBufferLength; while(true) int ByteRealRead=FileIn.read(buffer); if(ByteRealRead=-1) FileIn.close(); FileOut.flush(); FileOut.close(); return ; else FileOut.write(buffer,0,ByteRealRead); catch(Exception ee) System.out.println(Exception: + ee.getMessage(); public void copyDir(String sourceDir, String distDir) /在distDir文件夹下新建sourceDir指向的文件夹同名文件夹, /并将文件夹中所有文件或目录拷贝到新文件夹 if(sourceDir.lastIndexOf(/) != sourceDir.length() sourceDir += /; if(distDir.lastIndexOf(/) != distDir.length() distDir += /; File sourceDirFile = new File(sourceDir); File distDirFile = new File(distDir + sourceDirFile.getName(); if (sourceDirFile.exists() if (sourceDirFile.isDirectory() if(!distDirFile.exists() distDirFile.mkdirs(); File dirChildren = sourceDirFile.listFiles(); for (File currentChild : dirChildren) if(currentChild.isDirectory() copyDir(currentChild.getPath(),distDirFile.getPath(); /如果是子目录,则在目标目录下创建同名子目录,并递归复制文件和文件夹。 /仿照linux复制文件 /若传入参数sourceDir = c:/windows/system32 distDir = d:/a/则sourceDirFile.getPath() /=c:/windows/system32,distDirFile.getPath() = d:/a/system32 else this.copy(currentChild.getPath(), distDirFile.getPath()+ / + currentChild.getName(); return; else this.copy(sourceDir, distDirFile.getPath(); /如初始源为文件,则直接复制到目的文件夹下 return; else System.out.println(File or directory is not exist); return ; public FileIO() / TODO Auto-generated constructor stubpublic static void main(String args) / TODO Auto-generated method stubFileIO a = new FileIO();System.out.println(F:/back/fstab/ size: +a.getLength(F:/back/fstab/);System.out.println(E:/迅雷下载 size: + a.getLength(E:/迅雷下载);System.out.println(E:/2 size: + a.getLength(E:/2);a.copy(F:/back/fstab/,E:/fstab2/ );a.copyDir(F:/c+代码,E:/c+代码/ );四测试数据及运行结果第一次查询文件和文件夹大小,复制文件和文件夹正常显示文件大小,复制

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论