java实现读取、删除文件夹下的文件

 更新时间:2015年05月28日 16:25:26   投稿:hebedich  
本文给大家分享的是java实现读取、删除文件夹下的文件,其中File.delete()用于删除“某个文件或者空目录”!所以要删除某个目录及其中的所有文件和子目录,要进行递归删除,有需要的小伙伴可以参考下。

java实现读取、删除文件夹下的文件

package test.com;
 
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
 
public class ReadFile {
  public ReadFile() {
  }
  /**
   * 读取某个文件夹下的所有文件
   */
  public static boolean readfile(String filepath) throws FileNotFoundException, IOException {
      try {
 
          File file = new File(filepath);
          if (!file.isDirectory()) {
//              System.out.println("文件");
//              System.out.println("path=" + file.getPath());
//              System.out.println("absolutepath=" + file.getAbsolutePath());
              System.out.println(file.getName());
 
          } else if (file.isDirectory()) {
              String[] filelist = file.list();
              for (int i = 0; i < filelist.length; i++) {
                  File readfile = new File(filepath + "\\" + filelist[i]);
                  if (!readfile.isDirectory()) {
//                      System.out.println("path=" + readfile.getPath());
//                      System.out.println("absolutepath="
//                              + readfile.getAbsolutePath());
                      System.out.println(readfile.getName());
 
                  } else if (readfile.isDirectory()) {
                      readfile(filepath + "\\" + filelist[i]);
                  }
              }
 
          }
 
      } catch (FileNotFoundException e) {
          System.out.println("readfile()  Exception:" + e.getMessage());
      }
      return true;
  }
 
  /**
   * 删除某个文件夹下的所有文件夹和文件
   */
   
   
  /*public static boolean deletefile(String delpath)
          throws FileNotFoundException, IOException {
      try {
 
          File file = new File(delpath);
          if (!file.isDirectory()) {
              System.out.println("1");
              file.delete();
          } else if (file.isDirectory()) {
              System.out.println("2");
              String[] filelist = file.list();
              for (int i = 0; i < filelist.length; i++) {
                  File delfile = new File(delpath + "\\" + filelist[i]);
                  if (!delfile.isDirectory()) {
                      System.out.println("path=" + delfile.getPath());
                      System.out.println("absolutepath="
                              + delfile.getAbsolutePath());
                      System.out.println("name=" + delfile.getName());
                      delfile.delete();
                      System.out.println("删除文件成功");
                  } else if (delfile.isDirectory()) {
                      deletefile(delpath + "\\" + filelist[i]);
                  }
              }
              file.delete();
 
          }
 
      } catch (FileNotFoundException e) {
          System.out.println("deletefile()  Exception:" + e.getMessage());
      }
      return true;
  }*/
   
  public static void main(String[] args) {
      try {
          readfile("C:\\Users\\SW\\Desktop\\SKJ_H25補正\\004_RCAG\\003_SKJ");
          // deletefile("D:/file");
      } catch (FileNotFoundException ex) {
      } catch (IOException ex) {
      }
      System.out.println("ok");
  }
 
}

方法二:

package otherstudy;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;

/**
 * @ClassName: TestReadFile
 * @CreateTime: Aug 1, 2014 11:42:44 AM
 * @Author: mayi
 * @Description: 读取和删除文件夹下的所有文件
 *
 */
public class TestReadFile {
	/**
	 * 获取工程的WebRoot的绝对路径
	 * @return
	 */
	String getProjectPath(){
		//得到形如"/d:/${workspace}/${projectName}/WebRoot/WEB-INF/classes/"的 路径
    String path=this.getClass().getResource("/").getPath();
    //从路径字符串中取出工程路径
    path=path.substring(1, path.indexOf("WEB-INF/classes"));
    System.out.println("工程路径:"+path);
    return path;
	}
	/**
	 * @param args
	 */
	public static void main(String[] args) {
		TestReadFile trf=new TestReadFile();
		String xmlPath = trf.getProjectPath()+ "testDocs";
		try {
			readAllFile(xmlPath);
		} catch (FileNotFoundException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
	/**
	 * 读取指定路径文件夹下的所有文件
	 * @param filepath
	 * @return
	 * @throws FileNotFoundException
	 * @throws IOException
	 */
	public static boolean readAllFile(String filepath)
			throws FileNotFoundException, IOException {
		try {
			File file = new File(filepath);
			if (!file.isDirectory()) {
				System.out.println("\n文件信息:");
				System.out.println("\t相对路径=" + file.getPath());
				System.out.println("\t绝对路径=" + file.getAbsolutePath());
				System.out.println("\t文件全名=" + file.getName());

			} else if (file.isDirectory()) {
				System.out.println("\n文件夹内文件列表信息:");
				File[] fileList = file.listFiles();
				for (int i = 0; i < fileList.length; i++) {
					File readfile = fileList[i];
					if (!readfile.isDirectory()) {
						System.out.println("\n\t相对路径=" + readfile.getPath());
						System.out.println("\t绝对路径=" + readfile.getAbsolutePath());
						System.out.println("\t文件全名=" + readfile.getName());
					} else if (readfile.isDirectory()) {
						readAllFile(fileList[i].getPath());
					}
				}
			}
		} catch (FileNotFoundException e) {
			System.out.println("readfile()  Exception:" + e.getMessage());
		}
		return true;
	}

	/**
	 * 删除某个文件夹下的所有文件夹和文件
	 * @param delpath
	 * @return
	 * @throws FileNotFoundException
	 * @throws IOException
	 */
	public static boolean deleteFile(String delpath)
			throws FileNotFoundException, IOException {
		try {
			File file = new File(delpath);
			if (!file.isDirectory()) {
				System.out.println("1");
				file.delete();
			} else if (file.isDirectory()) {
				System.out.println("2");
				File[] fileList = file.listFiles();
				for (int i = 0; i < fileList.length; i++) {
					File delfile = fileList[i];
					if (!delfile.isDirectory()) {
						System.out.println("相对路径=" + delfile.getPath());
						System.out.println("绝对路径=" + delfile.getAbsolutePath());
						System.out.println("文件全名=" + delfile.getName());
						delfile.delete();
						System.out.println("删除文件成功");
					} else if (delfile.isDirectory()) {
						deleteFile(fileList[i].getPath());
					}
				}
				file.delete();
			}
		} catch (FileNotFoundException e) {
			System.out.println("deletefile()  Exception:" + e.getMessage());
		}
		return true;
	}
}

以上所述就是本文的全部内容了,希望大家能够喜欢。

相关文章

  • 上传自己的jar包到maven中央仓库的快速操作方法

    上传自己的jar包到maven中央仓库的快速操作方法

    网络上可以搜索到很多jar包到中央仓库,但是都不是多适合自己的项目,于是自己动手写个,本文档通过sonatype上传jar包至maven中央仓库,Sonatype通过JIRA来管理OSSRH仓库,具体实例代码跟随小编一起看看吧
    2021-08-08
  • MyBatis分页查询返回list的时候出现null的问题

    MyBatis分页查询返回list的时候出现null的问题

    这篇文章主要介绍了MyBatis分页查询返回list的时候出现null的问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
    2024-07-07
  • MyBatisPlus+Lombok实现分页功能的方法详解

    MyBatisPlus+Lombok实现分页功能的方法详解

    Lombok是一个Java类库,提供了一组注解,简化POJO实体类开发。本文将为大家介绍一下Lombok的使用以及如何利用MyBatisPlus+Lombok实现分页功能,感兴趣的可以动手尝试一下
    2022-07-07
  • Java spring boot实现批量删除功能详细示例

    Java spring boot实现批量删除功能详细示例

    这篇文章主要给大家介绍了关于Java spring boot实现批量删除功能的相关资料,文中通过代码以及图文将实现的方法介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
    2023-08-08
  • 如何实现在IDEA中导入一个模块

    如何实现在IDEA中导入一个模块

    这篇文章主要介绍了如何实现在IDEA中导入一个模块方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
    2024-04-04
  • 使用Springboot实现word在线编辑保存

    使用Springboot实现word在线编辑保存

    PageOffice目前支持的Web编程语言及架构有:Java(JSP、SSH、MVC等),ASP.NET(C#、VB.NET、MVC、Razor等),PHP,ASP,本篇文章就带你使用Springboot整合PageOffice实现word在线编辑保存
    2021-08-08
  • Spring中的Schedule动态添加修改定时任务详解

    Spring中的Schedule动态添加修改定时任务详解

    这篇文章主要介绍了Spring中的Schedule动态添加修改定时任务详解,可能有人会问,为啥不用Quartz,Quartz自然是非常方便强大的,但不是本篇要讲的内容,本篇就偏要使用SpringSchedule来实现动态的cron表达式任务,需要的朋友可以参考下
    2023-11-11
  • javap命令的使用技巧

    javap命令的使用技巧

    本篇文章给大家分享了关于JAVA中关于javap命令的使用技巧以及相关代码分享,有需要的朋友参考学习下。
    2018-05-05
  • java设计模式之适配器模式(Adapter)

    java设计模式之适配器模式(Adapter)

    这篇文章主要介绍了java设计模式之适配器模式Adapter的相关资料,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-01-01
  • java项目如何引入其他jar包

    java项目如何引入其他jar包

    通常在lib文件夹中存放从外部引入的jar包,所以把JAR文件复制进去。 然后修改编译脚本,不需要去编译tool文件夹里面的java类,直接把jar包添加到classpath,下文将详细介绍
    2021-10-10

最新评论