标签:windows import public java 空间
可以通过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");
}
}
标签:windows import public java 空间
原文地址:http://8757576.blog.51cto.com/8747576/1591243