创建、新增、取值、删除文件和文件夹

1.demo

package util;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;

public class saveTxt {
	/*
	 * 判断文件夹是否存在
	 */
	public static void createPageTxt(String pagePath){
        File dir = new File(pagePath);
        // 判断文件夹是否存在
        if (dir.isDirectory()) {
            System.out.println("文件夹已存在");
        } else {
            System.out.println("文件夹不存在");
            dir.mkdir();
            System.out.println("创建文件夹");
        }
	}
	
	/*
	 * 判断文件是否存在
	 */
	public static void createTxt(String txtPath){
		File file = new File(txtPath);
        // 判断文件是否存在
        if (file.exists()) {
            System.out.println("文件已存在");
        } else {
            System.out.println("文件不存在");
            try {
                file.createNewFile();
                System.out.println("创建文件");
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
	}
	
	/*
	 * 保存数据到文件
	 */
	public static void saveFile(String param,String txtPath) {
		File file = new File(txtPath);
		FileWriter fw;
		try {
			fw = new FileWriter(file, true);//Java使用FileWriter实现文件的写入,用法为:FileWriter(file,true); 其中第二个参数设置成false就是覆盖写入,true就是增量存储。
			fw.write(param);
//			fw.write("\r\n");//--\r:回车,\n:换行
			fw.close();
		}catch (FileNotFoundException e) {
			System.out.println("找不到路径");
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
	
	/*
	 * 从文件获取数据
	 */
	public static String readFail(String txtPath) {
		try {
			File file = new File(txtPath);// 定义一个file对象,用来初始化FileReader
			FileReader reader = new FileReader(file);// 定义一个fileReader对象,用来初始化BufferedReader
			BufferedReader bReader = new BufferedReader(reader);// new一个BufferedReader对象,将文件内容读取到缓存
			StringBuilder sb = new StringBuilder();// 定义一个字符串缓存,将字符串存放缓存中
			String s = "";
			while ((s = bReader.readLine()) != null) {// 逐行读取文件内容,不读取换行符和末尾的空格
				sb.append(s);
				//sb.append(s + "\n");// 将读取的字符串添加换行符后累加存放在缓存中
			}
			bReader.close();
			return sb.toString().trim();
		}catch (FileNotFoundException e) {
			System.out.println("找不到路径");
			return "error";
		} catch (IOException e) {
			e.printStackTrace();
			return "error";
		}
	}

	/*
	 * 删除文件或文件夹
	 */
	public static void delAllFile(String pagePath){
		 File directory = new File(pagePath);
	    if (!directory.isDirectory()){
	        directory.delete();
	    } else{
	        File [] files = directory.listFiles();

	        // 空文件夹
	        if (files.length == 0){
	            directory.delete();
	            System.out.println("删除" + directory.getAbsolutePath());
	            return;
	        }

	        // 删除子文件夹和子文件
	        for (File file : files){
	            if (file.isDirectory()){
	                delAllFile(pagePath);
	            } else {
	                file.delete();
	                System.out.println("删除" + file.getAbsolutePath());
	            }
	        }

	        // 删除文件夹本身
	        directory.delete();
	        System.out.println("删除" + directory.getAbsolutePath());
	    }
	}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

哎呦喂O_o嗨

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值