Java开发网 |
注册 |
登录 |
帮助 |
搜索 |
排行榜 |
发帖统计
|
您没有登录 |
» Java开发网 » Java SE 综合讨论区
打印话题 寄给朋友 订阅主题 |
作者 | Re:怎样得到程序运行期间,CPU和Memory的信息 [Re:rostone] |
pilgrimhuyu
发贴: 9 积分: 0 |
于 2003-11-17 17:26
如果只是要看虚拟机的内存使用情况可以用 long tr = r.totalMemory(); //Returns the total amount of memory in the Java Virtual Machine. long fr = r.freeMemory(); //Returns the amount of free memory in the system. 程序如下: public class ShowMemory { public static void main(String[] args) { java.lang.Runtime r =java.lang.Runtime.getRuntime(); long tr = r.totalMemory(); long fr = r.freeMemory(); System.out.println("total:"+tr ); System.out.println("free :"+fr ); } } Eclipse使用技巧 |
话题树型展开 |
人气 | 标题 | 作者 | 字数 | 发贴时间 |
5458 | 怎样得到程序运行期间,CPU和Memory的信息 | rostone | 44 | 2003-11-11 22:28 |
4553 | Re:怎样得到程序运行期间,CPU和Memory的信息 | vicious | 17 | 2003-11-11 22:49 |
4496 | Re:怎样得到程序运行期间,CPU和Memory的信息 | jameszhang | 23 | 2003-11-12 08:21 |
5349 | Re:怎样得到程序运行期间,CPU和Memory的信息 | bluecrystal | 17 | 2003-11-16 15:16 |
4651 | Re:怎样得到程序运行期间,CPU和Memory的信息 | pilgrimhuyu | 483 | 2003-11-17 17:26 |
4400 | Re:怎样得到程序运行期间,CPU和Memory的信息 | rostone | 19 | 2003-11-18 09:44 |
4812 | Re:怎样得到程序运行期间,CPU和Memory的信息 | wyuanzheng | 53 | 2003-11-18 13:33 |
已读帖子 新的帖子 被删除的帖子 |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |