2016年10月27日

(IO流)文本文件内容追加

摘要: package cn.mldn.demo; import java.io.*; public class Test{ public static void main(String[] args) throws IOException { //创建文件写入内容,如果再次执行不追加。 //FileOutputStream fos=new FileOutputStream("info1.tx... 阅读全文

posted @ 2016-10-27 15:33 明天的我 阅读(1234) 评论(0) 推荐(0) 编辑

删除某文件夹下的所有文件

摘要: package cn.mldn.demo; import java.io.*; public class Test{ public static void main(String[] args) { //封装目录 File srcFolder=new File("exam"); //递归实现 getAllJavaFilePaths(srcFolder); } public ... 阅读全文

posted @ 2016-10-27 00:38 明天的我 阅读(266) 评论(0) 推荐(0) 编辑

导航