转至繁体中文版     | 网站首页 | 图文教程 | 资源下载 | 站长博客 | 图片素材 | 武汉seo | 武汉网站优化 | 
最新公告:     敏韬网|教学资源学习资料永久免费分享站!  [mintao  2008年9月2日]        
您现在的位置: 学习笔记 >> 图文教程 >> 软件开发 >> JAVA开发 >> 正文
Java编程获取硬盘空间         ★★★★

Java编程获取硬盘空间

作者:闵涛 文章来源:闵涛的学习笔记 点击数:786 更新时间:2009/4/22 23:28:16
  因为论坛有人问到这个问题,所以就写了这篇文章。希望对大家有所帮助。

  一般来讲,要用java得到硬盘空间,有3种方法:

  1. 调用system的command,然后分析得到的结果,这种方法有很强的系统依赖性,linux下和win下要分别写程序。



  下面是一个win下的例子,编译成功之后,运行java Diskspace yourdir(比如c:\)

import java.io.BufferedReader;
import java.io.InputStreamReader;

/**
* Determine free disk space for a given directory by
* parsing the output of the dir command.
* This class is inspired by the code at
* Works only under Windows under certain circumstances.
* Yes, it's that shaky.
* Requires Java 1.4 or higher.
* @[EMAIL PROTECTED]
*Marco Schmidt
*/
public class Diskspace
{
 private Diskspace()
 {
  // prevent instantiation of this class
 }

/**
* Return available free disk space for a directory.
* @[EMAIL PROTECTED]
dirName name of the directory
* @[EMAIL PROTECTED]
free disk space in bytes or -1 if unknown
*/

 public static long getFreeDiskSpace(String dirName)
 {
  try
  {
   // guess correct 'dir' command by looking at the
   // operating system name
   String os = System.getProperty("os.name");
   String command;
   if (os.equals("Windows NT") ||os.equals("Windows 2000"))
   {
    command = "cmd.exe /c dir " + dirName;
   }
   else
   {
    command = "command.com /c dir " + dirName;
   }
   // run the dir command on the argument directory name
   Runtime runtime = Runtime.getRuntime();
   Process process = null;
   process = runtime.exec(command);
   if (process == null)
   {
    return -1;
   }
   // read the output of the dir command
   // only the last line is of interest
   BufferedReader in = new BufferedReader(new InputStreamReader(process.getInputStream()));
   String line;
   String freeSpace = null;
   while ((line = in.readLine()) != null)
   {
    freeSpace = line;
   }
   if (freeSpace == null)
   {
    return -1;
   }
   process.destroy();

   // remove dots & commas & leading and trailing whitespace
   freeSpace = freeSpace.trim();
   freeSpace = freeSpace.replaceAll("\\.", "");
   freeSpace = freeSpace.replaceAll(",", "");
   String[] items = freeSpace.split(" ");
   // the first valid numeric value in items after(!) index 0
   // is probably the free disk space
   int index = 1;
   while (index < items.length)
   {
    try
    {
     long bytes = Long.parseLong(items[index++]);
     return bytes;
    }
    catch (NumberFormatException nfe)
    {
    }
   }
   return -1;
  }
  catch (Exception exception)
  {
    return -1;
  }
 }

/**
* Command line program to print the free diskspace to stdout
* for all 26 potential root directories A:\ to Z:\
* (when no parameters are given to this program)
* or for those directories (drives) specified as parameters.
* @[EMAIL PROTECTED]
args program parameters
*/
 
 public static void main(String[] args)
 {
  if (args.length == 0)
  {
   for (char c = 'A'; c <= 'Z'; c++)
   {
    String dirName = c + ":\\";
    System.out.println(dirName + " " +
    getFreeDiskSpace(dirName));
   }
  }
  else
  {
   for (int i = 0; i < args.length; i++)
   {
    System.out.println(args[i] + " " + getFreeDiskSpace(args[i]));
   }
  }
 }
}

  方法二:使用Jconfig,可以跨平台

  从http://www.tolstoy.com/samizdat/jconfig.html上下载jconfig。

  下载的包的sample里有很简单的例子,如果是要得到磁盘空间的话:

  用FileRegistry.getVolumes()得到DiskVolume。

  然后call getFreeSpace()和getMaxCapacity()。

  就是这么简单。

  方法三:jni

  这个是解决所有和os相关的操作的万能利器了。

  例子我也懒得写了。

  写一个dll然后call之即可。


没有相关教程
教程录入:mintao    责任编辑:mintao 
  • 上一篇教程:

  • 下一篇教程:
  • 【字体: 】【发表评论】【加入收藏】【告诉好友】【打印此文】【关闭窗口
      注:本站部分文章源于互联网,版权归原作者所有!如有侵权,请原作者与本站联系,本站将立即删除! 本站文章除特别注明外均可转载,但需注明出处! [MinTao学以致用网]
      网友评论:(只显示最新10条。评论内容只代表网友观点,与本站立场无关!)

    同类栏目
    · C语言系列  · VB.NET程序
    · JAVA开发  · Delphi程序
    · 脚本语言
    更多内容
    热门推荐 更多内容
  • 没有教程
  • 赞助链接
    更多内容
    闵涛博文 更多关于武汉SEO的内容
    500 - 内部服务器错误。

    500 - 内部服务器错误。

    您查找的资源存在问题,因而无法显示。

    | 设为首页 |加入收藏 | 联系站长 | 友情链接 | 版权申明 | 广告服务
    MinTao学以致用网

    Copyright @ 2007-2012 敏韬网(敏而好学,文韬武略--MinTao.Net)(学习笔记) Inc All Rights Reserved.
    闵涛 投放广告、内容合作请Q我! E_mail:admin@mintao.net(欢迎提供学习资源)

    站长:MinTao ICP备案号:鄂ICP备11006601号-18

    闵涛站盟:医药大全-武穴网A打造BCD……
    咸宁网络警察报警平台