摘要: import java.io.FileReader; import java.io.IOException; import java.nio.file.FileVisitResult; public class Demo03Read { public static void main(String[ 阅读全文
posted @ 2020-10-07 15:02 159566 阅读(209) 评论(0) 推荐(0) 编辑
摘要: import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; //文件的复制 public class Demo03Copy { public static void main 阅读全文
posted @ 2020-10-06 17:34 159566 阅读(123) 评论(0) 推荐(0) 编辑
摘要: import java.io.FileOutputStream; import java.io.IOException; /*换行符号: window:\r\n Linux:/n mac:/r*/ public class Demo03OutPutStream { public static voi 阅读全文
posted @ 2020-10-06 17:16 159566 阅读(126) 评论(0) 推荐(0) 编辑
摘要: import java.io.FileInputStream; import java.io.IOException; import java.util.Arrays; //一次读取多个字节 public class Demo02InPutStream { public static void ma 阅读全文
posted @ 2020-10-06 17:14 159566 阅读(77) 评论(0) 推荐(0) 编辑
摘要: import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStream; import java.util.Arrays; public class Demo02OutPutStream { p 阅读全文
posted @ 2020-10-06 14:57 159566 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 匿名类 import java.io.File; import java.io.FileFilter; import java.io.FilenameFilter; public class Demo02Filter { public static void main(String[] args) 阅读全文
posted @ 2020-10-05 16:23 159566 阅读(85) 评论(0) 推荐(0) 编辑
摘要: import java.io.File; public class Demo02Recurison { public static void main(String[] args) { File file=new File("C:\\Users\\cy\\Desktop\\企业登录_files"); 阅读全文
posted @ 2020-10-04 17:41 159566 阅读(79) 评论(0) 推荐(0) 编辑
摘要: public class Demo01Recurison { public static void main(String[] args) { int sums = sum(3); System.out.println(sums); } private static int sum(int n) { 阅读全文
posted @ 2020-10-04 15:57 159566 阅读(295) 评论(0) 推荐(0) 编辑
摘要: public class Demo06File { public static void main(String[] args) { show01(); show02(); } private static void show02() { //File数组 File file=new File("F 阅读全文
posted @ 2020-10-04 15:11 159566 阅读(125) 评论(0) 推荐(0) 编辑
摘要: createNewFile() 当且仅当不存在具有此抽象路径名指定名称的文件时,不可分地创建一个新的空文件。 delete() 删除此抽象路径名表示的文件或目录。 mkdir() 创建此抽象路径名指定的目录。 mkdirs() 创建此抽象路径名指定的目录,包括所有必需但不存在的父目录。 import 阅读全文
posted @ 2020-10-04 14:53 159566 阅读(307) 评论(0) 推荐(0) 编辑