从java获取操作系统内存大小

Getting OS memory size from java(从java获取操作系统内存大小)
本文介绍了从java获取操作系统内存大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

有没有什么方法可以从 java 中获取操作系统上总内存的大小?使用

Are there any way to get the size of the total memory on the operating system from java? Using

Runtime.getRuntime().maxMemory()

返回 JVM 允许的内存,而不是操作系统.有没有人有办法获得这个(从java代码)?

returns the allowed memory for the JVM, not of the operating system. Does anyone have a way to obtain this (from java code)?

推荐答案

com.sun.management.OperatingSystemMXBean bean =
  (com.sun.management.OperatingSystemMXBean)
    java.lang.management.ManagementFactory.getOperatingSystemMXBean();
long max = bean.getTotalPhysicalMemorySize();

返回 JVM 的可用 RAM 大小(受 32 位限制),而不是堆大小.

returns available RAM size for JVM (limited by 32bit), not the heap size.

这篇关于从java获取操作系统内存大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How to implement RecyclerView with section header depending on category?(如何根据类别实现带有节标题的 RecyclerView?)
How to generate JNI header file in Eclipse(如何在 Eclipse 中生成 JNI 头文件)
Setting a custom HTTP header dynamically with Spring-WS client(使用 Spring-WS 客户端动态设置自定义 HTTP 标头)
Could you technically call the string[] anything in the main method?(从技术上讲,您可以在 main 方法中调用 string[] 吗?)
What is the proper way of setting headers in a URLConnection?(在 URLConnection 中设置标头的正确方法是什么?)
How to overwrite http-header quot;Hostquot; in a HttpURLConnection?(如何覆盖 http-header “主机在 HttpURLConnection 中?)