hot questions tagged jprofiler - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T13:03:48Z http://stackoverflow.com/feeds/tag?tagnames=jprofiler&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/163722/which-java-profiler-is-better-jprofiler-or-yourkit 10 Which Java profiler is better: JProfiler or YourKit? trenton 2008-10-02T18:02:04Z 2009-11-15T11:20:51Z <p>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 other 10% are webapps/servlet container apps (with very little JSP and NO SCRIPLETS!). Target user would be Sr Software Engineer with 5-10 years of industry experience. We need support only for Sun JDK 5 and.</p> <p>As of writing this question (2008-10-02), JProfiler was at 5.1.4 and YourKit was 7.5. Looks like YourKit 8.0 will be released soon.</p> http://stackoverflow.com/questions/1493010/is-there-a-jprofiler-equivalent-for-net 1 Is there a JProfiler equivalent for .NET? Nosrama 2009-09-29T14:44:29Z 2009-09-29T15:04:37Z <p>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?</p> http://stackoverflow.com/questions/154309/how-do-i-make-sure-my-objects-get-garbage-collected 5 How do I make sure my objects get garbage collected? Paul Tomblin 2008-09-30T18:24:33Z 2009-03-31T01:51:06Z <p>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 license because I've never used it before), and filtering on our code prefix, the biggest chunk both in total size and number of instances is 8000+ instances of a particular simple class. I clicked the "Garbage Collect" button on jprofiler, and most instances of other classes of ours went away, but not these particulate ones. I ran the test again, still in the same instance, and it created 4000+ more instances of the class, but when I clicked "Garbage Collect", those went away leaving the 8000+ original ones.</p> <p>These instances do get stuck into various Collections at various stages. I assume that the fact that they're not garbage collected must mean that something is holding onto a reference to one of the collections so that's holding onto a reference to the objects.</p> <p>Any suggestions how I can figure out what is holding onto the reference? I'm looking for suggestions of what to look for in the code, as well as ways to find this out in jprofiler if there are.</p> http://stackoverflow.com/questions/1259962/where-are-these-byte-in-java-using-jprofiler 1 Where are these byte[]? (In Java using JProfiler) J. Pablo Fernández 2009-08-11T12:10:45Z 2009-08-11T12:13:16Z <p>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/created, where is it?</p> http://stackoverflow.com/questions/112603/what-is-jni-global-reference 1 What is 'JNI Global reference' waquin 2008-09-22T00:01:13Z 2008-09-22T00:57:57Z <p>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.</p> <p>This frame is opened, and then closed.</p> <p>Using jProfiler, and viewing the Paths to GC Root there is only one reference, 'JNI Global reference'.</p> <p>What does this mean? Why is it hanging on to each instance of the frame?</p>