Tagged Questions

10
votes
19answers
3k views

Which Java profiler is better: JProfiler or YourKit?

Which profiler is better for general purpose profiling and heap analysis? 90% of our apps are standalone command line programs with substantial database and numeric processing. The …
1
vote
5answers
60 views

Is there a JProfiler equivalent for .NET?

I am used to profiling Java programs using Jprofiler which can give you a CPU Percentage breakdown for each class and method. Is there a similar tool for .NET?
1
vote
1answer
88 views

Where are these byte[]? (In Java using JProfiler)

I'm profiling a Java program that is leaking memory. Using JProfiler I see I get crazy amount of byte[] data. Is there a way to know more information about it? When is it allocated …
4
votes
11answers
982 views

How do I make sure my objects get garbage collected?

One of our programs is sometimes getting a OutOfMemory error on one users machine, but of course not when I'm testing it. I just ran it with jprofiler (on a 10 day evaluation lice …
1
vote
2answers
589 views

What is ‘JNI Global reference’

I am using jProfiler to find memory leaks in a Java swing application. I have identified instances of a JFrame which keeps growing in count. This frame is opened, and then closed. …