File类

File:既可以表示文件,也可以表示文件目录
调用不带参数的list方法,就可以获得此File对象的全部列表

  1. public class DirList {
  2. public static void main(String[] args) {
  3. File path = new File(".");//代表的是项目的根目录
  4. String[] list;
  5. if(args.length == 0)
  6. list = path.list();//获取指定目录的所有文件信息
  7. else
  8. list = path.list(new DirFilter(args[0]));
  9. Arrays.sort(list, String.CASE_INSENSITIVE_ORDER);
  10. for(String dirItem : list)
  11. System.out.println(dirItem);
  12. }
  13. }
  14. class DirFilter implements FilenameFilter {
  15. private Pattern pattern;
  16. public DirFilter(String regex) {
  17. pattern = Pattern.compile(regex);
  18. }
  19. public boolean accept(File dir, String name) {
  20. return pattern.matcher(name).matches();
  21. }
  22. }

输入输出

I/O类库中进场使用“流”这个概念,任何来自InputStream或者Reader派生而来的类都有命名为read()的基本方法,用于读取单个字节或者字节数组。
任何来OutputStream或者Writer派生而来的类都有命名为write()的基本方法,用于写单个字节或者字节数组

InputStream类型

表示从不同数据源产生输入的类
image.png

OutputStream类型

该类决定了输出所要去往的目标
image.png

添加属性和有用的接口

Java I/O类库需要多种不同功能的组合,这也是使用装饰器模式的理由所在,这也是Java类库中存在filter类的原因所在抽象类filter是所有装饰器类的基类

通过FilterInputStream从InputStream读取数据

DataInputStream允许我们读取不同的基本类型数据以及String对象(所有的方法都用read开头)
DataOutputStream可以通过数据流,将基本的数据从一个地方迁移到另一个地方
image.png

通过FIlterOutputStream向OutputStream写入

BufferedOutputStream是一个修改过的OutputStream,它对数据流使用缓冲技术,因此当每次向流写入时,不必每次都进行实际的物理写入动作。
image.png

新I/O

新I/O的速度更快,原因是使用的结构更接近于操作系统执行I/O的方式:通道和缓冲器。
image.png
唯一直接与通道交互的缓冲器是ByteBuffer,并且还有一个方法选择集,以原始的字节形式或者基本类型输出和读取数据。但是没有办法输出或者读取对象,即使是字符串对象也不行
Reader和Writer这种字符模式不能用于产生通道。

  1. public class GetChannels {
  2. public static void main(String[] args) throws IOException {
  3. FileChannel fc = new FileOutputStream("data.txt").getChannel();
  4. fc.write(ByteBuffer.wrap("Some text".getBytes(StandardCharsets.UTF_8)));
  5. fc.close();
  6. fc = new RandomAccessFile("data.txt", "rw").getChannel();
  7. fc.position(fc.size()); //将指针移动到文件末尾,以便继续写入东西
  8. fc.write(ByteBuffer.wrap("Some more".getBytes(StandardCharsets.UTF_8)));
  9. //使用ByteBuffer.Wrap方法将已经存在的字节数组包装在ByteBuffer中
  10. fc.close();
  11. fc = new FileInputStream("data.txt").getChannel();
  12. ByteBuffer buffer = ByteBuffer.allocate(1024);
  13. fc.read(buffer);
  14. fc.close();
  15. buffer.flip(); //将指针引动在文件的最后面,这样才可以读取出来,如果没有将他放在最前面,读不出来东西
  16. while (buffer.hasRemaining()){
  17. System.out.print((char) buffer.get());
  18. }
  19. }
  20. }

转换数据

  1. public class BufferToText {
  2. private static final int BSIZE = 1024;
  3. public static void main(String[] args) throws IOException {
  4. FileChannel fc = new FileOutputStream("data2.txt").getChannel();
  5. fc.write(ByteBuffer.wrap("Some Words".getBytes(StandardCharsets.UTF_8)));
  6. fc.close();
  7. fc = new FileInputStream("data2.txt").getChannel();
  8. ByteBuffer buffer = ByteBuffer.allocate(BSIZE);
  9. fc.read(buffer);
  10. buffer.flip();
  11. fc.close();
  12. System.out.println(buffer.asCharBuffer()); //这种方式读取出来时乱码,但是使用UTF-16这样打印出来就没事
  13. while (buffer.hasRemaining()){
  14. System.out.print((char) buffer.get());
  15. }
  16. System.out.println();
  17. buffer.rewind(); //返回到数据开始的部分
  18. String encoding = System.getProperty("file.encoding");
  19. System.out.println("Decoding using: " + encoding + ": " + Charset.forName(encoding).decode(buffer));
  20. fc = new FileOutputStream("data2.txt").getChannel();
  21. fc.write(ByteBuffer.wrap("Some Text2".getBytes(StandardCharsets.UTF_16BE)));
  22. fc.close();
  23. fc = new FileInputStream("data2.txt").getChannel();
  24. buffer.clear();
  25. fc.read(buffer);
  26. buffer.flip();
  27. System.out.println(buffer.asCharBuffer());
  28. fc = new FileOutputStream("data2.txt").getChannel();
  29. buffer = ByteBuffer.allocate(24);
  30. //因为分配了24个字节,一个字符占两个字节,所以Some Text占了9个字符,剩下的字符还会输出
  31. buffer.asCharBuffer().put("Some Text");//用这样方式也可以在文件中写入内容
  32. fc.write(buffer);
  33. fc.close();
  34. fc = new FileInputStream("data2.txt").getChannel();
  35. buffer.clear();
  36. fc.read(buffer);
  37. buffer.flip();
  38. System.out.println(buffer.asCharBuffer());
  39. }
  40. }

获取基本类型

缓冲器容纳的是普通的字节,为了将他们转换成字符,要么在输入他们时候对其进行编码,要么在缓冲器对其进行输出的时候对其进行解码

  1. public class GetData {
  2. private static final int SIZE = 1024;
  3. public static void main(String[] args) {
  4. ByteBuffer bb = ByteBuffer.allocate(SIZE);
  5. int i = 0;
  6. while (i++ < bb.limit()){//bb.limit 表示缓冲器的大小
  7. if (bb.get() != 0) { //初始值全为零
  8. System.out.println("nonzero");
  9. }
  10. }
  11. System.out.println("i = "+ i);
  12. bb.rewind(); //将position设置为0;移动到文件开头,
  13. bb.asCharBuffer().put("Howdy");//放入数据或者进行rewind操作,对limit都没有影响
  14. char c ;
  15. while ((c = bb.getChar()) != 0) {
  16. System.out.print(c + " ");
  17. }
  18. System.out.println();
  19. bb.rewind();
  20. bb.asShortBuffer().put((short) 471142);//short还得强调
  21. System.out.println(bb.getShort());
  22. bb.rewind();
  23. bb.asIntBuffer().put(99471142);
  24. System.out.println(bb.getInt());
  25. bb.rewind();
  26. bb.asLongBuffer().put(99471142);
  27. System.out.println(bb.getLong());
  28. bb.rewind();
  29. bb.asFloatBuffer().put(99471142);
  30. System.out.println(bb.getFloat());
  31. bb.rewind();
  32. bb.asDoubleBuffer().put(99471142);
  33. System.out.println(bb.getDouble());
  34. }
  35. }

视图缓冲器

视图缓冲器可以让我们通过某个特定的基本类型的视窗产看其底层的ByteBuffer。ByteBuffer依旧是存放数据的地方,对视图的修改都会映射成为对ByteBuffer中数据的修改

  1. public class IntBufferDemo {
  2. private static final int SIZE = 1024;
  3. public static void main(String[] args) {
  4. ByteBuffer bb = ByteBuffer.allocate(SIZE);
  5. IntBuffer ib = bb.asIntBuffer();
  6. ib.put(new int[]{11, 42, 47, 49, 99, 143, 811, 1016});
  7. System.out.println(ib.get(3));
  8. ib.put(3, 1811);//可以直接进行修改
  9. ib.flip();//如果不进行flip操作的话还会读取后面的元素,都是0;
  10. while (ib.hasRemaining()) {
  11. int i = ib.get();
  12. System.out.println(i);
  13. }
  14. }
  15. }

使用视图缓冲器可以把任何数据都转换成某一特定的基本类型

  1. public class ViewBuffers {
  2. public static void main(String[] args) {
  3. ByteBuffer bb = ByteBuffer.wrap(
  4. new byte[]{0, 0, 0, 0, 0, 0, 0, 'a'});
  5. bb.rewind();
  6. printnb("Byte Buffer ");
  7. while (bb.hasRemaining())
  8. printnb(bb.position() + " -> " + bb.get() + ", ");
  9. print();
  10. CharBuffer cb =
  11. ((ByteBuffer) bb.rewind()).asCharBuffer();
  12. printnb("Char Buffer ");
  13. while (cb.hasRemaining())
  14. printnb(cb.position() + " -> " + cb.get() + ", ");
  15. print();
  16. FloatBuffer fb =
  17. ((ByteBuffer) bb.rewind()).asFloatBuffer();
  18. printnb("Float Buffer ");
  19. while (fb.hasRemaining())
  20. printnb(fb.position() + " -> " + fb.get() + ", ");
  21. print();
  22. IntBuffer ib =
  23. ((ByteBuffer) bb.rewind()).asIntBuffer();
  24. printnb("Int Buffer ");
  25. while (ib.hasRemaining())
  26. printnb(ib.position() + " -> " + ib.get() + ", ");
  27. print();
  28. LongBuffer lb =
  29. ((ByteBuffer) bb.rewind()).asLongBuffer();
  30. printnb("Long Buffer ");
  31. while (lb.hasRemaining())
  32. printnb(lb.position() + " -> " + lb.get() + ", ");
  33. print();
  34. ShortBuffer sb =
  35. ((ByteBuffer) bb.rewind()).asShortBuffer();
  36. printnb("Short Buffer ");
  37. while (sb.hasRemaining())
  38. printnb(sb.position() + " -> " + sb.get() + ", ");
  39. print();
  40. DoubleBuffer db =
  41. ((ByteBuffer) bb.rewind()).asDoubleBuffer();
  42. printnb("Double Buffer ");
  43. while (db.hasRemaining())
  44. printnb(db.position() + " -> " + db.get() + ", ");
  45. }
  46. }

image.png

字节存放顺序

当存储量大于一个字节时,像int,float等,就要考虑字节的顺序问题了,ByteBuffer是以高位优先的顺序形式存储数据的,并且数据在网上传送时也常常使用高位优先的形式
如何通过字节存放模式设置来改变字符中的字节次序

  1. public class Endians {
  2. public static void main(String[] args) {
  3. ByteBuffer bb = ByteBuffer.wrap(new byte[12]);
  4. bb.asCharBuffer().put("abcdef");
  5. print(Arrays.toString(bb.array()));
  6. bb.rewind();
  7. bb.order(ByteOrder.BIG_ENDIAN);
  8. bb.asCharBuffer().put("abcdef");
  9. print(Arrays.toString(bb.array()));
  10. bb.rewind();
  11. bb.order(ByteOrder.LITTLE_ENDIAN);
  12. bb.asCharBuffer().put("abcdef");
  13. print(Arrays.toString(bb.array()));//Array返回的是自己的成员变量数组
  14. }
  15. }

用缓冲器操纵数据

如果想把一个字节数组写到文件中去,那么就应该使用ByteBuffer.wrap()方法把字节数组包装起来,然后使用getChannle()方法在FIleOutputStream上打开一个通道,然后将来自于ByteBuffer的数据写到FileChannel中
ByteBuffer是将数据移出通道的唯一方式,并且我们只能创建一个独立的基本类型缓冲器,或者使用“as”方式从ByteBuffer中获得

缓冲器的细节

Buffer是由数据和可以高效的访问及操纵这些数据的四个索引组成的:mark(标记),position(位置),limit(界限),和capacity(容量)
image.png
如何交换相邻字符

  1. public class UsingBuffers {
  2. private static void symmetricScramble(CharBuffer buffer) {
  3. while (buffer.hasRemaining()) {
  4. buffer.mark();
  5. char c1 = buffer.get();
  6. char c2 = buffer.get();
  7. buffer.reset();
  8. buffer.put(c2).put(c1);
  9. }
  10. }
  11. public static void main(String[] args) {
  12. char[] data = "UsingBuffers".toCharArray();
  13. ByteBuffer bb = ByteBuffer.allocate(data.length * 2);
  14. CharBuffer cb = bb.asCharBuffer();
  15. cb.put(data);
  16. print(cb.rewind());
  17. symmetricScramble(cb);
  18. print(cb.rewind());
  19. symmetricScramble(cb);
  20. print(cb.rewind());
  21. }
  22. }

image.png
image.png
image.png
image.png
image.png
image.png

内存映射文件

内存映射文件允许我们创建和修改那些因为太大而不能放入内存的文件

  1. public class LargeMappedFiles {
  2. static int length = 0x8FFFFFF; // 128 MB
  3. public static void main(String[] args) throws Exception {
  4. MappedByteBuffer out =
  5. new RandomAccessFile("test.dat", "rw").getChannel()
  6. .map(FileChannel.MapMode.READ_WRITE, 0, length);
  7. //参数:文件的t映射是只读还是读写还是私有的,文件的起始位置,必须是非负数,映射区域的大小
  8. for(int i = 0; i < length; i++)
  9. out.put((byte)'x');
  10. print("Finished writing");
  11. for(int i = length/2; i < length/2 + 6; i++)
  12. printnb((char)out.get(i));
  13. }
  14. }

文件加锁

文件加锁对其他的操作系统进程是可见的,并不是说其他线程可读

  1. public class FileLocking {
  2. public static void main(String[] args) throws IOException, InterruptedException {
  3. FileOutputStream fos = new FileOutputStream("file.txt");
  4. FileLock fl = fos.getChannel().tryLock();//对其进行上锁
  5. if (fl != null) {
  6. System.out.println("Locked File");
  7. TimeUnit.SECONDS.sleep(10);//休眠10s
  8. fl.release();//解除上锁状态
  9. System.out.println("Release Lock");
  10. }
  11. fos.close();
  12. }
  13. }

对象序列化

java的对象序列化将那些实现了Serializable接口的对象转换成一个字节序列,并能够在以后将这个字节序列完全恢复成原来的对象
要序列化一个对象,首先要创建OutputStream对象,然后将其封装在一个ObjectOutputStream对象之内,这是调用wtiteObject就可以将对象序列化,然后将其发送给OutputStream(对象序列化时基于字节的,因要使用InputSteam和OutputStream继承层次结构)

  1. class Data implements Serializable {
  2. private int n;
  3. public Data(int n) {
  4. this.n = n;
  5. }
  6. public String toString() {
  7. return Integer.toString(n);
  8. }
  9. }
  10. public class Worm implements Serializable {
  11. private static Random rand = new Random(47);
  12. private Data[] d = {
  13. new Data(rand.nextInt(10)), //使用随机数初始化
  14. new Data(rand.nextInt(10)),
  15. new Data(rand.nextInt(10))
  16. };
  17. private Worm next;
  18. private char c;
  19. public Worm(int i, char x) {
  20. print("Worm constructor: " + i);
  21. c = x;
  22. if (--i > 0)
  23. next = new Worm(i, (char) (x + 1));
  24. }
  25. public Worm() {
  26. print("Default constructor");
  27. }
  28. public String toString() {
  29. StringBuilder result = new StringBuilder(":");
  30. result.append(c);
  31. result.append("(");
  32. for (Data dat : d)
  33. result.append(dat);
  34. result.append(")");
  35. if (next != null)
  36. result.append(next);
  37. return result.toString();
  38. }
  39. public static void main(String[] args)
  40. throws ClassNotFoundException, IOException {
  41. Worm w = new Worm(6, 'a');
  42. print("w = " + w);
  43. ObjectOutputStream out = new ObjectOutputStream(
  44. new FileOutputStream("worm.out"));
  45. out.writeObject("Worm storage\n");
  46. out.writeObject(w); //将对象序列化
  47. out.close();
  48. ObjectInputStream in = new ObjectInputStream(
  49. new FileInputStream("worm.out"));
  50. String s = (String) in.readObject(); //读写文件
  51. Worm w2 = (Worm) in.readObject();
  52. print(s + "w2 = " + w2);
  53. ByteArrayOutputStream bout =
  54. new ByteArrayOutputStream();
  55. ObjectOutputStream out2 = new ObjectOutputStream(bout);
  56. out2.writeObject("Worm storage\n");
  57. out2.writeObject(w);
  58. out2.flush();
  59. ObjectInputStream in2 = new ObjectInputStream(
  60. new ByteArrayInputStream(bout.toByteArray()));//读写文件数组
  61. s = (String) in2.readObject();
  62. Worm w3 = (Worm) in2.readObject();
  63. print(s + "w3 = " + w3);
  64. }
  65. }

序列化的控制

特殊的安全问题:不希望对象的某一部分被序列化,或者一个对象被还原之后,某个子对象需要重新创建,从而不需要将该子对象序列化
可以通过实现Externalizable将其代替Serializable,来对序列化过程进行控制,这个Externalizable继承了Serializable,并且新增了两个方法:writeExternal()和readExternal(),这两个方法会在序列化和反序列化还原的过程中被自动调用。

  1. class Blips1 implements Externalizable{
  2. public Blips1(){
  3. System.out.println("Blips1 Constructor---");
  4. }
  5. @Override
  6. public void writeExternal(ObjectOutput out) throws IOException {
  7. System.out.println("Blips1 writeExternal");
  8. }
  9. @Override
  10. public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
  11. System.out.println("Blips readExternal");
  12. }
  13. }
  14. class Blips2 implements Externalizable{
  15. public Blips2(){
  16. System.out.println("Blips2 Constructor -------");
  17. }
  18. /* Blips2(){ //如果它的构造器不是public,不会恢复成功的
  19. System.out.println("Blips2 Constructor -------");
  20. }*/
  21. @Override
  22. public void writeExternal(ObjectOutput out) throws IOException {
  23. System.out.println("Blips2 writeExternal");
  24. }
  25. @Override
  26. public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
  27. System.out.println("Blips2 readExternal");
  28. }
  29. }
  30. public class Blips {
  31. public static void main(String[] args) throws IOException, ClassNotFoundException {
  32. System.out.println("Constructing");
  33. Blips1 blips1 = new Blips1();
  34. Blips2 blips2 = new Blips2();
  35. ObjectOutputStream o = new ObjectOutputStream(new FileOutputStream("Blips.out"));
  36. System.out.println("Saving objects");
  37. o.writeObject(blips1);//调用方法对其进行序列化
  38. o.writeObject(blips2);
  39. o.close();
  40. ObjectInputStream in = new ObjectInputStream(new FileInputStream("Blips.out"));
  41. System.out.println("Recovering objects");
  42. blips1 = (Blips1) in.readObject();//对其进行还原,并且会调用它的默认构造器,必须声明式pubic的
  43. //如果不是public会还原不成功
  44. blips2 = (Blips2) in.readObject();
  45. }
  46. }

此外,Externalizable可以控制哪些属性序列化还是不序列化可以控制只写不读,但是不能不写就读相较于父类更灵活

  1. public class Blips3 implements Externalizable {
  2. private int i;
  3. private String s;
  4. public Blips3(){
  5. System.out.println("Blips3 constructor-----");
  6. }
  7. public Blips3(String x,int a){
  8. System.out.println("Blips3(String x, int a)");
  9. s = x;
  10. i = a;
  11. }
  12. @Override
  13. public String toString() {
  14. return s + " " + i;
  15. }
  16. @Override
  17. public void writeExternal(ObjectOutput out) throws IOException {
  18. System.out.println("Blips3.writeExternal");
  19. out.writeObject(s);
  20. out.writeInt(i);
  21. }
  22. @Override
  23. public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
  24. System.out.println("Blips3.readExternal");
  25. s = (String) in.readObject(); //如果不进行这两个步骤就会发现S为null,为0;
  26. i = in.readInt();
  27. }
  28. public static void main(String[] args) throws IOException, ClassNotFoundException {
  29. System.out.println("Constructing objects");
  30. Blips3 b3 = new Blips3("A String", 47);//在参数构造器中对其进行赋值
  31. System.out.println(b3);
  32. ObjectOutputStream o = new ObjectOutputStream(new FileOutputStream("Blip3.out"));
  33. System.out.println("Saving Object");
  34. o.writeObject(b3);
  35. o.close();
  36. ObjectInputStream in = new ObjectInputStream(new FileInputStream("Blip3.out"));
  37. System.out.println("Recovering Object");
  38. b3 = (Blips3) in.readObject();//此时先走默认构造器,并且跟参数构造器没有关系
  39. System.out.println(b3);
  40. }
  41. }

transiant(瞬时)关键字

使特定对象不让java的序列化机制自动保存和恢复,可以使用transiant关键字对字段逐个关闭序列化

  1. public class Logon implements Serializable {
  2. private Date date = new Date();
  3. private String username;
  4. private transient String password;//使用transient关键字,这样序列化之后被恢复之后发现password为null
  5. public Logon(String name, String pwd) {
  6. username = name;
  7. password = pwd;
  8. }
  9. @Override
  10. public String toString() {
  11. return "Logon{" +
  12. "date=" + date +
  13. ", username='" + username + '\'' +
  14. ", password='" + password + '\'' +
  15. '}';
  16. }
  17. public static void main(String[] args) throws IOException, ClassNotFoundException {
  18. Logon a = new Logon("Hulk", "myLittlePony");
  19. System.out.println("logon a = " + a);
  20. ObjectOutputStream o = new ObjectOutputStream(new FileOutputStream("Logon.out"));
  21. o.writeObject(a);
  22. o.close();
  23. ObjectInputStream in = new ObjectInputStream(new FileInputStream("Logon.out"));
  24. System.out.println("Recovering Object at " + new Date());
  25. a = (Logon) in.readObject();
  26. System.out.println(a);
  27. }
  28. }

Externalizable的替代方法

实现Serializible接口,添加writeObject和readObject方法(而不是重写),只要提供了这两个方法,就会使用他们而不是默认的序列化机制

  1. public class SerialCtl implements Serializable {
  2. private String a;
  3. private transient String b;
  4. public SerialCtl(String aa, String bb) {
  5. a = "Not Transient: " + aa;
  6. b = "Transient: " + bb;
  7. }
  8. public String toString() { return a + "\n" + b; }
  9. private void writeObject(ObjectOutputStream stream)
  10. throws IOException {
  11. stream.defaultWriteObject();//处理的是非transient的序列化
  12. stream.writeObject(b);//处理的是transient的序列化
  13. }
  14. private void readObject(ObjectInputStream stream)
  15. throws IOException, ClassNotFoundException {
  16. stream.defaultReadObject();
  17. b = (String)stream.readObject();
  18. }
  19. public static void main(String[] args)
  20. throws IOException, ClassNotFoundException {
  21. SerialCtl sc = new SerialCtl("Test1", "Test2");
  22. System.out.println("Before:\n" + sc);
  23. ByteArrayOutputStream buf= new ByteArrayOutputStream();
  24. ObjectOutputStream o = new ObjectOutputStream(buf);
  25. o.writeObject(sc);
  26. ObjectInputStream in = new ObjectInputStream(
  27. new ByteArrayInputStream(buf.toByteArray()));
  28. SerialCtl sc2 = (SerialCtl)in.readObject();
  29. System.out.println("After:\n" + sc2);
  30. }
  31. }

On Java 8

文件和目录,路径

  1. public class PathInfo {
  2. static void show(String id, Object p) {
  3. System.out.println(id + " " + p);
  4. }
  5. static void info(Path p){
  6. show("toString: ", p);
  7. show("Exists: ", Files.isRegularFile(p));//测试文件是否包含不透明内容的常规文件
  8. show("Directory: ",Files.isDirectory(p));//判断文件是否使目录
  9. show("Absolute: ",p.isAbsolute());//判断是否是绝对路径
  10. show("Filename: ",p.getFileName());//获取文件名
  11. show("Parent: ", p.getParent());//获取父级目录
  12. show("root: ", p.getRoot());
  13. System.out.println("----------");
  14. }
  15. public static void main(String[] args) {
  16. System.out.println(System.getProperty("os.name"));//获取操作系统名称
  17. Path p = Paths.get("src/stu/chapter18/PathInfo.java");
  18. info(p);
  19. Path ap = p.toAbsolutePath();//拿到绝对路径
  20. info(ap);
  21. info(ap.getParent());
  22. try {
  23. info(p.toRealPath());//返回文件的真实路径
  24. } catch (IOException e) {
  25. e.printStackTrace();
  26. }
  27. URI u = p.toUri();
  28. System.out.println("URi: " + u);
  29. Path puri = Paths.get(u);
  30. System.out.println(Files.exists(puri));
  31. File f = ap.toFile();//返回此路径的File对象
  32. }
  33. }

目录

  1. public class RmDir {
  2. public static void rmdir(Path dir) throws IOException {
  3. Files.walkFileTree(dir,new SimpleFileVisitor<Path>(){//遍历文件树,SimpleFileVisitor:文件访问器
  4. @Override
  5. //在目录的每个文件上运行
  6. public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {
  7. Files.delete(file);
  8. return FileVisitResult.CONTINUE;
  9. }
  10. @Override
  11. //访问了目录中所有内容之后,及其所有的后代之后,为目录调用
  12. public FileVisitResult postVisitDirectory(Path dir, IOException exc) throws IOException {
  13. Files.delete(dir);
  14. return FileVisitResult.CONTINUE;
  15. }
  16. //visitFileFailed():调用无法访问的文件
  17. //preVisitDirectory():在访问目录中的条目之前为目录调用
  18. });
  19. }
  20. }