1、创建文件
🌂boolean java.io.File.createNewFile() throws IOException用来创建文件,如果文件存在,创建失败,返回false;
🌂🌂new File(“a.txt”);并不创建文件实体,只是创建一个指向“a.txt”的引用。
🌂🌂路径分隔符:File.separator
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| package file.dol.sn; import java.io.File; public class FileDemo { public static void main(String[] args) { File f1 = new File("a.txt"); try { boolean b = f1.createNewFile(); System.out.println(b); } catch (Exception e) { } File f2 = new File("E:"+File.separator+"tmp","b.txt"); System.out.println(f2); } }
|
2、删除文件
🌂delete():删除文件成功返回true,删除失败返回false( boolean java.io.File.delete() )
🌂🌂deleteOnExit():程序退出时,自动删除文件。一般用于对程序创建的临时文件进行操作,退出时删除。( void java.io.File.deleteOnExit() )
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| package file.dol.sn; import java.io.File; public class FileDemo { public static void main(String[] args) { File f1 = new File("a.txt"); try { boolean b = f1.createNewFile(); f1.delete(); } catch (Exception e) { } } }
|
3、判断文件是否存在
exists():判断文件是否存在( boolean java.io.File.exists() )
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| package file.dol.sn; import java.io.File; public class FileDemo { public static void main(String[] args) { File f1 = new File("not.txt"); boolean b = f1.exists(); System.out.println(b); } }
|
4、创建文件夹
🌂mkdir():只能创建“一级目录”(boolean java.io.File.mkdir());
🌂🌂mkdirs():可以创建多级目录(boolean java.io.File.mkdirs())。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| package file.dol.sn; import java.io.File; public class FileDemo { public static void main(String[] args) { File dir1 = new File("abc"); File dir2 = new File("a\\b\\c\\d"); try { boolean b = dir1.mkdir(); System.out.println(b); b = dir2.mkdirs(); System.out.println(b); } catch (Exception e) { System.out.println(e.toString()); } } }
|
5、文件类型判断
🌂exists():判断文件是否存在,注意:一定要先判断这个;
🌂🌂isDirectory():判断是否为文件夹;
🌂🌂🌂isFile():判断是否为文件;
🌂🌂🌂🌂isHidden():判断是否为隐藏文件;
🌂🌂🌂🌂🌂isAbsolute():判断是否为绝对路径,这里不管文件是否存在都能判断。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
| package file.dol.sn; import java.io.File; public class FileDemo { public static void main(String[] args) { File f = new File("C:\\abc.txt"); try { if (f.exists()) { if (f.isDirectory()) { System.out.println("文件夹"); } if (f.isFile()) { System.out.println("文件"); } if (f.isHidden()) { System.out.println("隐藏文件"); } } else { System.out.println("文件不存在"); } if (f.isAbsolute()) { System.out.println("是绝对路径"); } } catch (Exception e) { System.out.println(e.toString()); } } }
|
6、获取文件信息
🌂getName():获取文件名;
🌂🌂getParent():获取文件父目录;
🌂🌂🌂getPath():获取文件路径;
🌂🌂🌂🌂getAbsolutePath():获取文件绝对路径;
🌂🌂🌂🌂🌂lastModified():获得文件最后一次被修改的时间;
🌂🌂🌂🌂🌂🌂length():获取文件大小;
🌂🌂🌂🌂🌂🌂🌂renameTo():文件剪切,将文件f1剪切然后粘贴到f2(相当于右键f1->剪切->粘贴->f2所在目录)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| package file.dol.sn; import java.io.File; public class FileDemo { public static void main(String[] args) { File f1 = new File("abc.txt"); File f2 = new File("E:\\Java\\test.txt"); try { System.out.println(f1.getName()); System.out.println(f1.getParent()); System.out.println(f1.getPath()); System.out.println(f1.getAbsolutePath()); System.out.println(f1.lastModified()); System.out.println(f1.length()); f1.renameTo(f2); } catch (Exception e) { System.out.println(e.toString()); } } }
|
7、获取目录下文件名
🌂listRoots():获取系统盘符;
🌂🌂list():获取“X:\”目录下的所有文件名,包括隐藏文件和文件夹(调用list()方法时,必须先封装一个目录,且必须存在的目录。)
🌂🌂🌂list(FilenameFilter filter):列出文件名的时候,可以进行过滤操作(如:列出后缀名为.txt的文件)。
🌂🌂🌂🌂listFiles():列出目录下文件名,不包括文件夹。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| package file.dol.sn; import java.io.File; import java.io.FilenameFilter; public class FileDemo { public static void main(String[] args) { File[] files = File.listRoots(); for (File f : files) System.out.println(f.toString()); System.out.println("——————————————————————"); File fnFile = new File("C:\\"); String[] strings = fnFile.list(); for (String s : strings) System.out.println(s); System.out.println("——————————————————————"); strings = fnFile.list(new FilenameFilter() { @Override public boolean accept(File dir, String name) { return name.endsWith(".txt"); } }); for (String s : strings) System.out.println(s); System.out.println("——————————————————————"); files = fnFile.listFiles(); for (File f : files) System.out.println(f.toString()); } }
|
8、递归打印所有文件名
注意:测试中,有些隐藏文件名不能访问还是其他的原因,当在打印根目录(如:”C:\“)下的所有文件名时,会有个叫“System Volume Information”的隐藏文件夹,访问失败,所以以下代码中,不访问隐藏文件。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
| package file.dol.sn; import java.io.File; public class FileDemo { public static void main(String[] args) { File dirFile = new File("E:\\Dol"); showDir(dirFile,0); } public static void showDir(File dir,int level) { System.out.println(printSpace(level)+"文件夹:"+dir.getName()); level += 4; File[] file = dir.listFiles(); for (File f : file) { if (f.isDirectory() && !f.isHidden()) showDir(f,level); else System.out.println(printSpace(level)+f.getName()); } } public static StringBuffer printSpace(int level) { StringBuffer space = new StringBuffer(); for (int i = 0; i < level; ++i) { space.append(" "); } return space; } }
|
9、递归删除整个文件夹
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| package file.dol.sn; import java.io.File; public class FileDemo { public static void main(String[] args) { File dirFile = new File("E:\\Dol"); deleteDir(dirFile,0); } public static void deleteDir(File dir,int level) { File[] file = dir.listFiles(); for (File f : file) { if (f.isDirectory() && !f.isHidden()) deleteDir(f,level); else { f.delete(); System.out.println(f.getName()+"——已删除"); } } dir.delete(); System.out.println(dir.getName()+"——已删除"); } }
|
10、Properties类
1)常用的基本操作,设置键值,获取值。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| package file.dol.sn; import java.util.Properties; import java.util.Set; public class FileDemo { public static void main(String[] args) { Properties prop = new Properties(); prop.setProperty("Dolphin", "海豚"); prop.setProperty("Dol", "CSDN"); String value = prop.getProperty("Dolphin"); System.out.println("@@@@value@@@@"+value); Set<String> nameSet = prop.stringPropertyNames(); for (String s : nameSet) { System.out.println(s+":"+prop.getProperty(s)); } } }
|
2)读取配置文件
读取配置文件,并对配置文件进行修改,修改后再保存。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| package file.dol.sn; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.util.Properties; public class FileDemo { public static void main(String[] args) throws IOException{ Properties prop = new Properties(); FileInputStream fis = new FileInputStream("pz.txt"); prop.load(fis); prop.setProperty("Dol", "123"); prop.setProperty("Dol", "321"); FileOutputStream fos = new FileOutputStream("pz.txt"); prop.store(fos, "comment"); prop.list(System.out); fis.close(); fos.close(); } }
|
说明:Enumeration(列举)
public interface Enumeration实现 Enumeration 接口的对象,它生成一系列元素,一次生成一个。连续调用 nextElement 方法将返回一系列的连续元素。
例如,要输出 Vector v 的所有元素,可使用以下方法:
1 2
| for (Enumeration<E> e = v.elements(); e.hasMoreElements();) System.out.println(e.nextElement());
|
这些方法主要通过向量的元素、哈希表的键以及哈希表中的值进行枚举。枚举也用于将输入流指定到 SequenceInputStream 中。
注:此接口的功能与 Iterator 接口的功能是重复的。此外,Iterator 接口添加了一个可选的移除操作,并使用较短的方法名。新的实现应该优先考虑使用 Iterator 接口而不是 Enumeration 接口。
有两个方法:
🌂hasMoreElements() 测试此枚举是否包含更多的元素。
🌂🌂nextElement() 如果此枚举对象至少还有一个可提供的元素,则返回此枚举的下一个元素。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
| package file.dol.sn; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.SequenceInputStream; import java.util.Enumeration; import java.util.Vector; public class FileDemo { public static void main(String[] args) throws IOException { Vector<FileInputStream> vector = new Vector<FileInputStream>(); vector.add(new FileInputStream("E:\\1.txt")); vector.add(new FileInputStream("E:\\2.txt")); vector.add(new FileInputStream("E:\\3.txt")); Enumeration<FileInputStream> en = vector.elements(); SequenceInputStream sis = new SequenceInputStream(en); FileOutputStream fos = new FileOutputStream("E:\\4.txt"); byte[] buf = new byte[1024]; int len = 0; while ((len=sis.read(buf))!=-1) fos.write(buf,0,len); fos.close(); sis.close(); } }
|
12、对象序列化实现Serializable接口
🌂添加序列号;
🌂🌂静态成员变量不可序列化;
🌂🌂🌂堆内存变量要想不被序列化,可以加transient关键字。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
| package file.dol.sn; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.io.Serializable;
class Person implements Serializable { public static final long serialVersionUID = 42L; private String name; private int age; private static String sex = "male"; public Person(String n, int a, String s) { name = n; age = a; sex = s; } public String toString() { return name+":"+age+":"+sex; } } public class FileDemo { public static void WriteOut() throws IOException { ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("obj.txt")); oos.writeObject(new Person("Dolphin", 20,"female")); oos.close(); } public static void ReadIn() throws Exception { ObjectInputStream ois = new ObjectInputStream(new FileInputStream("obj.txt")); Person p = (Person)ois.readObject(); ois.close(); System.out.println(p); } public static void main(String[] args) throws Exception { ReadIn(); } }
|
13、管道流
🌂平时两个流读写都是通过内存变量,进行数据操作的;
🌂🌂这里引入管道流,开启两个线程,一个读取流,一个写入流,直接将两个流对接上。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
| package io.dol.sn; import java.io.PipedInputStream; import java.io.PipedOutputStream;
class Read implements Runnable { private PipedInputStream in; public Read(PipedInputStream in) { this.in = in; } public void run() { try { byte[] buf = new byte[1024]; int len = 0; while ((len=in.read(buf))!=-1) { System.out.println(buf); } in.close(); } catch (Exception e) { throw new RuntimeException("管道流读取失败"); } } } class Write implements Runnable { private PipedOutputStream out; public Write(PipedOutputStream in) { this.out = out; } public void run() { try { out.write("Piped lai la...".getBytes()); out.close(); } catch (Exception e) { throw new RuntimeException("管道流输出失败"); } } } public class PipedStreamDemo { public static void main(String[] args) { PipedInputStream in = new PipedInputStream(); PipedOutputStream out = new PipedOutputStream(); Read r = new Read(in); Write w = new Write(out); new Thread(r).start(); new Thread(w).start(); } }
|
14、RandomAccessFile类
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| package io.dol.sn; import java.io.IOException; import java.io.RandomAccessFile; public class RafDemo { public static void Read() throws IOException { RandomAccessFile raf = new RandomAccessFile("raf.txt", "rw"); byte[] buf= new byte[4]; raf.read(buf); String name = new String(buf); int age; age = raf.readInt(); raf.close(); System.out.println("网名:"+name); System.out.println("年龄:"+age); } public static void Write() throws IOException { RandomAccessFile raf = new RandomAccessFile("raf.txt", "rw"); raf.write("海豚".getBytes()); raf.writeInt(20); raf.close(); } public static void main(String[] args) throws IOException { Write(); Read(); } }
|
15、DataStream类
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| package io.dol.sn; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; public class DataStreamDemo { public static void main(String[] args) throws IOException { DataOutputStream out = new DataOutputStream(new FileOutputStream("data.txt")); out.writeInt(123); out.writeDouble(56.88); out.writeBoolean(true); out.close(); DataInputStream in = new DataInputStream(new FileInputStream("data.txt")); int nInt = in.readInt(); double nDou = in.readDouble(); boolean b = in.readBoolean(); in.close(); System.out.println("nInt:"+nInt); System.out.println("nDou:"+nDou); System.out.println("b:"+b); } }
|
16、ByteArrayStream类
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| package io.dol.sn; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import javax.print.attribute.standard.Sides; public class ByteArrayStreamDemo { public static void main(String[] args) { ByteArrayInputStream in = new ByteArrayInputStream("Dolphin".getBytes()); ByteArrayOutputStream out = new ByteArrayOutputStream(); int len = 0; while ((len=in.read())!=-1) { out.write(len); } System.out.println(out.size()); } }
|