• 将字符串写入到文本文件中(可自动生成文件)
  • 读取文件里面的内容
  • 生成文件
  • 生成文件夹
  • 删除文件或文件夹
  • 文件或文件夹重名

将字符串写入到文本文件中(可自动生成文件)

 

    /**     * 将字符串写入到文本文件中     * 需要makeFilePath方法     */    public static void writeTxtToFile(String strcontent, String filePath, String fileName) {        //生成文件夹之后,再生成文件,不然会出错        makeFilePath(filePath, fileName);        String strFilePath = filePath + fileName;        // 每次写入时,都换行写        String strContent = strcontent + "\r\n";        try {            File file = new File(strFilePath);            if (!file.exists()) {                Log.d("TestFile", "Create the file:" + strFilePath);                file.getParentFile().mkdirs();                file.createNewFile();            }            RandomAccessFile raf = new RandomAccessFile(file, "rwd");            raf.seek(file.length());            raf.write(strContent.getBytes());            raf.close();        } catch (Exception e) {            Log.e("TestFile", "Error on write File:" + e);        }    }

读取文件里面的内容

    /**     * 读取文件里面的内容     * @return 内容     */    public static String getFile(String filePath, String fileName) {        try {            // 创建文件            File file = new File(filePath + "/", fileName);            // 创建FileInputStream对象            FileInputStream fis = new FileInputStream(file);            // 创建字节数组 每次缓冲1M            byte[] b = new byte[1024];            int len = 0;// 一次读取1024字节大小,没有数据后返回-1.            // 创建ByteArrayOutputStream对象            ByteArrayOutputStream baos = new ByteArrayOutputStream();            // 一次读取1024个字节,然后往字符输出流中写读取的字节数            while ((len = fis.read(b)) != -1) {                baos.write(b, 0, len);            }            // 将读取的字节总数生成字节数组            byte[] data = baos.toByteArray();            // 关闭字节输出流            baos.close();            // 关闭文件输入流            fis.close();            // 返回字符串对象            return new String(data);        } catch (Exception e) {            e.printStackTrace();            return null;        }    }

生成文件

    /**     * 生成文件     * 需要makeRootDirectory方法     * 如果没有 filePath文件夹可自动生成     */    public static File makeFilePath(String filePath, String fileName) {        File file = null;        makeRootDirectory(filePath);        try {            file = new File(filePath + "/" + fileName);            if (!file.exists()) {                file.createNewFile();            }        } catch (Exception e) {            e.printStackTrace();        }        return file;    }

生成文件夹

    // 生成文件夹    public static void makeRootDirectory(String filePath) {        File file = null;        try {            file = new File(filePath);            if (!file.exists()) {                file.mkdir();            }        } catch (Exception e) {            Log.i("error:", e+"");        }    }

删除文件或文件夹

    /**     * 删除已存储的文件或文件夹     */    public static void deletefile(String filePath, String fileName) {        try {            // 找到文件所在的路径并删除该文件            File file = new File(filePath + "/", fileName);            if (file.isFile()) {                file.delete();            } else {                deleteDirectory(filePath + "/" + fileName);            }        } catch (Exception e) {            e.printStackTrace();        }    }    private static boolean deleteDirectory(String dir) {        // 如果dir不以文件分隔符结尾,自动添加文件分隔符        if (!dir.endsWith(File.separator))            dir = dir + File.separator;        File dirFile = new File(dir);        // 如果dir对应的文件不存在,或者不是一个目录,则退出        if ((!dirFile.exists()) || (!dirFile.isDirectory())) {            System.out.println("删除目录失败:" + dir + "不存在!");            return false;        }        boolean flag = true;        // 删除文件夹中的所有文件包括子目录        File[] files = dirFile.listFiles();        for (int i = 0; i < files.length; i++) {            // 删除子文件            if (files[i].isFile()) {                flag = deleteFile(files[i].getAbsolutePath());                if (!flag)                    break;            }            // 删除子目录            else if (files[i].isDirectory()) {                flag = deleteDirectory(files[i]                        .getAbsolutePath());                if (!flag)                    break;            }        }        if (!flag) {            System.out.println("删除目录失败!");            return false;        }        // 删除当前目录        if (dirFile.delete()) {            System.out.println("删除目录" + dir + "成功!");            return true;        } else {            return false;        }    }    public static boolean deleteFile(String fileName) {        File file = new File(fileName);        // 如果文件路径所对应的文件存在,并且是一个文件,则直接删除        if (file.exists() && file.isFile()) {            if (file.delete()) {                System.out.println("删除单个文件" + fileName + "成功!");                return true;            } else {                System.out.println("删除单个文件" + fileName + "失败!");                return false;            }        } else {            System.out.println("删除单个文件失败:" + fileName + "不存在!");            return false;        }    }

文件或文件夹重名

   /**     * 文件或文件夹重命名     * oldPath 和 newPath必须是新旧文件的绝对路径     * */    public static void renameFile(String oldPath, String newPath) {        if(TextUtils.isEmpty(newPath)) {            File file = new File(newPath);            try{                file.createNewFile();            }catch (IOException e) {                e.printStackTrace();            }        }        File file = new File(oldPath);        file.renameTo(new File(newPath));    }

 

更多相关文章

  1. Android(安卓)ADB命令大全(通过ADB命令查看wifi密码、MAC地址、
  2. Android深入浅出系列课程---Lesson15LLY110602_Dalvik虚拟机概述
  3. Mac系统下对Android(安卓)apk进行反编译
  4. Android(安卓)Studio开发之JNI ---- 加载调用第三方so库
  5. 安卓开发过程中遇到的问题总结及解决方法
  6. TheType "xx" is already defined
  7. Android应用开发基础篇(1)-----Button
  8. Android:阴影效果的另一种实现方法:layer-list
  9. Android(安卓)系统开发Android.mk的详解

随机推荐

  1. lftp链接异常情况如何进行排查
  2. 世界上没有绝对安全的手机,保护iPhone安全
  3. OSPF学习笔记整理(中)
  4. Gookit Banking Trojan中的后门利用分析
  5. CCIE考试中常用的show,赶紧收藏吧!
  6. 信息安全行业的门槛有多高?安全行业个人职
  7. 【原创】关于交换机端口链路类型Access、
  8. 3分钟掌握思科路由器密码破解
  9. 【原创】关于交换机端口链路类型Access、
  10. CVE-2019-16097 Harbor权限提升漏洞分析