如何使用java计算linux机器上的可用磁盘空间?

发布于 2024-10-01 22:00:50 字数 54 浏览 8 评论 0原文

我尝试使用 File getFreeSpace() 也返回 0。还有其他方法可以做到这一点吗?

I tried with File getFreeSpace() also which returns me 0. Is there any other way to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

念三年u 2024-10-08 22:00:50

旧的 org.apache.commons.io.FileSystemUtils 怎么样?

How about the older org.apache.commons.io.FileSystemUtils?

痴意少年 2024-10-08 22:00:50
try {

    double freeDiskSpace = org.apache.commons.io.FileSystemUtils.freeSpaceKb("/volume"); 
    double freeDiskSpaceGB = freeDiskSpace / 1024 / 1024;
    System.out.println("Free Disk Space (GB):" + freeDiskSpaceGB);

    } catch (IOException e) {
            e.printStackTrace();
    }
try {

    double freeDiskSpace = org.apache.commons.io.FileSystemUtils.freeSpaceKb("/volume"); 
    double freeDiskSpaceGB = freeDiskSpace / 1024 / 1024;
    System.out.println("Free Disk Space (GB):" + freeDiskSpaceGB);

    } catch (IOException e) {
            e.printStackTrace();
    }
凤舞天涯 2024-10-08 22:00:50

尝试

System{" df -k | awk '{sum += $4 }i; END {print sum} '"};

Try

System{" df -k | awk '{sum += $4 }i; END {print sum} '"};
小苏打饼 2024-10-08 22:00:50
public long getTotalSpace();
public long getFreeSpace();
public long getUsableSpace();

这些方法中的每一个都返回 java.io.File 表示的分区的请求大小(以字节为单位),如果无法从 File 对象获取分区,则返回 0L。
你能报告你的代码吗?

public long getTotalSpace();
public long getFreeSpace();
public long getUsableSpace();

Each of these methods returns the requested size, in bytes, of the partition represented by the java.io.File or 0L if a partition cannot be obtained from the File object.
Can you report your code?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文