作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图在 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/
我是一名优秀的程序员,十分优秀!