可以通过java的File对象得到磁盘的总空间大小,剩余空间大小,以及已用空间大小。
-
import java.io.File;
-
-
public class FreeDiskSpace {
-
-
public static void main(String[] args) {
-
File file = new File("c:");
-
long totalSpace = file.getTotalSpace();
-
long freeSpace = file.getFreeSpace();
-
long usedSpace = totalSpace - freeSpace;
-
-
System.out.println("总大小 : " + totalSpace / 1024 / 1024 / 1024 + "G");
-
System.out.println("剩余大小 : " + freeSpace / 1024 / 1024 / 1024 + "G");
-
System.out.println("已用大小 : " + usedSpace / 1024 / 1024 / 1024 + "G");
-
}
-
-
}
本文转自lzf0530377451CTO博客,原文链接: http://blog.51cto.com/8757576/1591243,如需转载请自行联系原作者