时 间 记 忆
<<  < 2018 - >  >>
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31

最 新 评 论

最 新 日 志

最 新 留 言

搜 索

用 户 登 录

我 的 相 册

我 的 圈 子

我 的 好 友

友 情 连 接


 
 
 
Java如何获得硬盘剩余空间
[ 2017-8-18 17:31:00 | By: 我家超超会发光 ]
 
import java.io.File;
  
public class DiskSpaceDetail {
  
    public static void main(String[] args) {
  
        File diskPartition = new File("C:");
  
        long totalCapacity = diskPartition.getTotalSpace(); 
  
        long freePartitionSpace = diskPartition.getFreeSpace(); 
        long usablePatitionSpace = diskPartition.getUsableSpace(); 
  
        System.out.println("**** Sizes in Mega Bytes ****\n");
  
        System.out.println("Total C partition size : " + totalCapacity / (1024*1024) + " MB");
        System.out.println("Usable Space : " + usablePatitionSpace / (1024 *1024) + " MB");
        System.out.println("Free Space : " + freePartitionSpace / (1024 *1024) + " MB");
  
        System.out.println("\n**** Sizes in Giga Bytes ****\n");
  
        System.out.println("Total C partition size : " + totalCapacity / (1024*1024*1024) + " GB");
        System.out.println("Usable Space : " + usablePatitionSpace / (1024 *1024*1024) + " GB");
        System.out.println("Free Space : " + freePartitionSpace / (1024 *1024*1024) + " GB");
    }
}
 
 
  • 标签:硬盘剩余空间 
  • 发表评论:
     
    天涯博客 天涯博客
    天涯博客欢迎您!