gpt4 book ai didi

java - 如何在oracle java中获取驱动器容量

转载 作者:行者123 更新时间:2023-11-29 02:20:44 26 4
gpt4 key购买 nike

我试图在 oracle 中获取驱动器 c: 的容量,为此我正在使用 java,但我遇到了一些麻烦,因为在 oracle File io 类中它不起作用正如预期的那样。这是我的示例代码:

CREATE OR REPLACE AND RESOLVE JAVA SOURCE NAMED TEST.DISKS_FREE as 
import java.io.File;
import java.sql.*;

public class DiskFreeSpace
{
public static long loadDisk() throws SQLException
{
File file = new File("c:");
long freeSpace = file.getFreeSpace();
return freeSpace;
}
}

当我编译这段代码时,抛出这个错误:

[Error]  (0: 0): DISKS_FREE:14: cannot find symbol
[Error] (0: 0): symbol : method getFreeSpace()
[Error] (0: 0): location: class java.io.File
[Error] (0: 0): long freeSpace = file.getFreeSpace();
[Error] (0: 0): ^
[Error] (0: 0): 1 error

这意味着编译器在 java.io.File 中找不到方法 getFreeSpace(),但是如果我在 java (jdk6) 中测试它,它工作完美。顺便说一下,我正在使用 oracle 11gr2。

最佳答案

你有和其他方法(方法)来找到可用空间:

import java.io.File;

public class DiskSpaceDetail
{
public static void main(String[] args)
{
File file = new File("c:");
long totalSpace = file.getTotalSpace(); //total disk space in bytes.
long usableSpace = file.getUsableSpace(); ///unallocated / free disk space in bytes.
long freeSpace = file.getFreeSpace(); //unallocated / free disk space in bytes.

System.out.println(" === Partition Detail ===");

System.out.println(" === bytes ===");
System.out.println("Total size : " + totalSpace + " bytes");
System.out.println("Space free : " + usableSpace + " bytes");
System.out.println("Space free : " + freeSpace + " bytes");

System.out.println(" === mega bytes ===");
System.out.println("Total size : " + totalSpace /1024 /1024 + " mb");
System.out.println("Space free : " + usableSpace /1024 /1024 + " mb");
System.out.println("Space free : " + freeSpace /1024 /1024 + " mb");
}
}

请告诉我这是否适用于您的情况..

关于java - 如何在oracle java中获取驱动器容量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28172490/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com