Java 文件系統(tǒng)

2018-02-04 17:34 更新

Java IO教程 - Java文件系統(tǒng)


Java 7引入了新的輸入/輸出2(NIO.2)API并提供了一個新的 I/O API。

它向Java類庫添加了三個包:java.nio.file,java.nio.file.attribute和java.nio.file.spi。

文件系統(tǒng)

FileSystem類的對象表示Java程序中的文件系統(tǒng)。

FileSystem對象用于執(zhí)行兩個任務:

  • Java程序和文件系統(tǒng)之間的接口。
  • 一個工廠用于創(chuàng)建許多類型的文件系統(tǒng)相關(guān)對象和服務。

FileSystem對象與平臺相關(guān)。


創(chuàng)建文件系統(tǒng)

要獲取默認的FileSystem對象,我們需要使用FileSystems類的getDefault()靜態(tài)方法,如下所示:

FileSystem fs  = FileSystems.getDefault();

FileSystem由一個或多個FileStore組成。FileSystem的getFileStores()方法返回FileStore對象的Iterator。

FileSystem的getRootDirectories()方法返回Path對象的迭代器,它表示到所有頂級目錄的路徑。

FileSystem的isReadOnly()方法告訴我們是否獲得對文件存儲的只讀訪問權(quán)限。

例子

以下代碼顯示如何使用FileSystem對象。

import java.nio.file.FileStore;
import java.nio.file.FileSystem;
import java.nio.file.FileSystems;
import java.nio.file.Path;
import java.io.IOException;

public class Main {
  public static void main(String[] args) {
    FileSystem fs = FileSystems.getDefault();

    System.out.println("Read-only file system: " + fs.isReadOnly());
    System.out.println("File name separator: " + fs.getSeparator());

    for (FileStore store : fs.getFileStores()) {
      printDetails(store);
    }
    for (Path root : fs.getRootDirectories()) {
      System.out.println(root);
    }
  }

  public static void printDetails(FileStore store) {
    try {
      String desc = store.toString();
      String type = store.type();
      long totalSpace = store.getTotalSpace();
      long unallocatedSpace = store.getUnallocatedSpace();
      long availableSpace = store.getUsableSpace();
      System.out.println(desc + ", Total: " + totalSpace + ",  Unallocated: "
          + unallocatedSpace + ",  Available: " + availableSpace);
    } catch (IOException e) {
      e.printStackTrace();
    }
  }
}

上面的代碼生成以下結(jié)果。



以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號