当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java FileStore getBlockSize()用法及代码示例


FileStore类的getBlockSize()方法用于返回此文件存储对象中每个块的字节数。每个文件存储都组织为字节的离散字节序列,称为块,而块是文件存储的最小存储单元。每个读取和写入操作都在多个块上执行。此方法有助于获取块的大小。

用法:

public long getBlockSize() throws IOException

参数:此方法不接受任何内容。


返回值:此方法返回一个正值,以字节为单位表示此文件存储的块大小。

异常:此方法引发以下异常:

  • IOException:如果发生I /O错误。
  • UnsupportedOperationException:如果不支持该操作。

以下示例程序旨在说明getBlockSize()方法:
示例1:

// Java program to demonstrate 
// FileStore.getBlockSize() method 
  
import java.io.IOException; 
import java.nio.file.FileStore; 
import java.nio.file.Files; 
import java.nio.file.Path; 
import java.nio.file.Paths; 
  
public class GFG { 
  
    public static void main(String[] args) 
        throws IOException 
    { 
        // create object of Path 
        Path path 
            = Paths.get( 
                "C:\\Movies\\001.txt"); 
  
        // get FileStore object 
  
        FileStore fs 
            = Files.getFileStore(path); 
  
        // print FileStore name and 
        // getBlockSize 
        System.out.println("FileStore Name: "
                           + fs.name()); 
  
        System.out.println("Block Size:"
                           + fs.getBlockSize()); 
    } 
}

输出:

示例2:

// Java program to demonstrate 
// FileStore.getBlockSize() method 
  
import java.io.IOException; 
import java.nio.file.FileStore; 
import java.nio.file.Files; 
import java.nio.file.Path; 
import java.nio.file.Paths; 
  
public class GFG { 
  
    public static void main(String[] args) 
        throws IOException 
    { 
        // create object of Path 
        Path path 
            = Paths.get( 
                "E:\\Tutorials\\file.txt"); 
  
        // get FileStore object 
  
        FileStore fs 
            = Files.getFileStore(path); 
  
        // print FileStore name and 
        // getBlockSize 
        System.out.println("FileStore Name: "
                           + fs.name()); 
  
        System.out.println("Block Size:"
                           + fs.getBlockSize()); 
    } 
}

输出:

参考:https://docs.oracle.com/javase/10/docs/api/java/nio/file/FileStore.html#getBlockSize()



相关用法


注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 FileStore getBlockSize() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。