• java开发_Runtime


    在java中经常需要获取一些系统信息,如系统的资源空间等。下面就是一些Runtime的应用:

     1 public static void main(String[] a){
     2         Runtime runtime = Runtime.getRuntime();
     3         long freeMemoery = runtime.freeMemory();
     4         long totalMemory = runtime.totalMemory();
     5         long usedMemory = totalMemory - freeMemoery;
     6         long maxMemory = runtime.maxMemory();
     7         long useableMemory = maxMemory - totalMemory + freeMemoery;
     8         
     9         System.out.println("当前时间:"+runtime);
    10         System.out.println("系统闲置空间:"+freeMemoery);
    11         System.out.println("系统总空间:"+totalMemory);
    12         System.out.println("系统被用的空间:"+usedMemory);
    13         System.out.println("系统最大空间:"+maxMemory);
    14         System.out.println("系统可用空间:"+useableMemory);
    15     }

    运行效果:

    1 当前时间:java.lang.Runtime@c3c749
    2 系统闲置空间:4873672
    3 系统总空间:5177344
    4 系统被用的空间:303672
    5 系统最大空间:66650112
    6 系统可用空间:66346440
  • 相关阅读:
    审核系统
    ehcache 缓存
    tomcat 内存设置
    html5 开发 跨平台 桌面应用
    service thread 结合使用
    html5桌面应用
    鼠标 事件
    服务器 判断 客户端 文件下载
    使用github管理Eclipse分布式项目开发
    uub代码
  • 原文地址:https://www.cnblogs.com/hongten/p/java_Runtime.html
Copyright © 2020-2023  润新知