views:

248

answers:

2

I need Java Swing Free Memory component (similar to that in Eclipse IDE). Preferably free (and open source). Thank you in advance.

+5  A: 
VonC
No, I didn't mean MAT. What I meant was a simple memory indicator you can see on the MAT screenshot in the status bar.
mynameisfred
+1  A: 

If you just need to see memory usage of your application (heap, permanent generation, etc), but without the details of a profiler, check out JConsole. It's bundled with JDK 1.5 and higher.

Joshua McKinnon