vote up 8 vote down star
2

During execution, how can a java program tell how much memory it is using?

I don't care how efficient it is!

flag

4 Answers

vote up 6 vote down check

VonC's answer is an interactive solution - if you want to know programatically, you can use Runtime.totalMemory() to find out the total amount used by the JVM, and Runtime.freeMemory() to find out how much of that is still available (i.e. it's allocated to the JVM, but not allocated within the JVM - new objects can use this memory).

These are instance methods - use Runtime.getRuntime() to first get the singleton instance.

link|flag
You are correct (my initial reaction was to monitor from the outside), +1 to you ;) – VonC Oct 27 '08 at 8:30
vote up 2 vote down

This won't be exact, but for a rough estimate, just subtract Runtime.getRuntime.freeMemory() from Runtime.getRuntime.totalMemory(). Do that at the begining of the program to get an idea of the JVM's overhead memory usage and at intervals latter on in the execution.

link|flag
vote up 2 vote down

If you are have a java1.6 somewhere and your program is running in java 1.4.2, 1.5 or 1.6, you can launch a visualVM session, connect to your application, and follow the memory (and much more)

image of monitoring application with Visual VM

(The images are not displayed at the moment, so please refers to Monitoring an application for an illustration.)

link|flag
Thank you CMS, and thank you whoever upvoted this... considering it was not exactly what the user requested ;) – VonC Oct 27 '08 at 8:29
vote up 0 vote down

java.lang.Runtime.totalMemory() will give you the required info -- http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Runtime.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.