java 操作本地文件

1、写本地文件

/**
 * 
 * @param sDestFile 文件名
 * @param sContent  内容
 *  autho whh
 */
    public static void appendToFile(String sDestFile, String sContent) {
    // String sContent = "I love Ysm";
    // String sDestFile = "F:/work/logParse/autoCreateHql/myWrite.txt";
    File destFile = new File(sDestFile);
    BufferedWriter out = null;
    if (!destFile.exists()) {
        try {
            destFile.createNewFile();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    try {
        out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(sDestFile, true)));
        out.write(sContent);
        out.newLine();
    } catch (Exception e) {
        e.printStackTrace();
    } finally {
        try {
            if (out != null) {
                out.close();
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

2、找出所有以某个字符串结尾的文件名的文件

public static void findFile(File file) {
//1.首先判断传入的路径是否存在
        if (file.exists()) {

            // 2.如果是文件,判断是不是以java结尾

            if (file.isFile()) {
                String filePath = file.getPath();
                if (file.getPath().endsWith("createtable.sh")) { //此处限定以"createtable.sh"结尾
                    appendToFile("G:\\work\\compareHiveMetaToTreasury\\createtableFileName",filePath);
                   // System.out.println(filePath);
                }
            }
            // 3如果给的是文件夹   需要递归调用
            if (file.isDirectory()) {
                File[] otherFile = file.listFiles();
                for (File f : otherFile) {
                    findFile(f);// 通过递归调用
                }
            }
        } else {
            System.out.println("您给定的文件夹不存在");
        }
    }

转载于:https://my.oschina.net/u/3267050/blog/1806163

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值