我可以获得可用磁盘空间。我如何获得总磁盘空间?
我的代码是:
import java.io.IOException;
import org.apache.commons.io.FileSystemUtils;
public class DiskSpace {
public static void main(String[] args) {
try {
//calculate free disk space
double freeDiskSpace = FileSystemUtils.freeSpaceKb(args[0]);
System.out.println(args[0]);
//convert the number into gigabyte
double freeDiskSpaceGB = freeDiskSpace / 1024 / 1024;
System.out.println("Free Disk Space (GB):" + freeDiskSpaceGB);
} catch (IOException e) {
e.printStackTrace();
}
}
}
FileSystemUtils
没有磁盘总空间的方法???希望你的回复
提前致谢
答案 0 :(得分:7)
如果您正在使用Java6,File类将执行:
public long getTotalSpace()
public long getFreeSpace()
public long getUsableSpace()
答案 1 :(得分:4)
试
System.out.println(new File("/").getTotalSpace()/1024/1024/1024); //in GB