long getTotalSpace String getPath long getUsableSpace 描述 所述java.io.File.getTotalSpace()方法返回此抽象路径名指定的分区的大小。 声明 以下是java.io.File.getTotalSpace()方法的声明 public long getTotalSpace() 参数 NA 返回值 该方法返回分区的大小(以字节为单位)。 异常 SecurityException - 如果安装了安全管理器并且它拒绝RuntimePermission(“getFileSystemAttributes”)或其SecurityManager.checkRead(String)方法拒绝对该文件的读访问。 实例 以下示例显示了java.io.File.getTotalSpace()方法的用法。 package com.tutorialspoint; import java.io.File; public class FileDemo { public static void main(String[] args) { File f = null; long v; boolean bool = false; try { // create new file f = new File("test.txt"); // returns size of the partition named v = f.getTotalSpace(); // true if the file path exists bool = f.exists(); // if file exists if(bool) { // prints System.out.print("size: "+v); } } catch(Exception e) { // if any error occurs e.printStackTrace(); } } } 让我们编译并运行上面的程序,这将产生以下结果 size: 290391584768 String getPath long getUsableSpace