Which class file is loaded by the classloader ?
Here is a simple way to know the exact location used by the classloader to get your class :
URL myClassURL = MyMysteryClass.class.getProtectionDomain().getCodeSource().getLocation();
11380 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Kevin Gaudin http://myspace.com/nivekbass
URL myClassURL = MyMysteryClass.class.getProtectionDomain().getCodeSource().getLocation();
import java.util.Hashtable; public class StopWatch { private static final Hashtable startTime = new Hashtable(); public static void start(String id){ startTime.put(id,new Long(System.currentTimeMillis())); } public static long stop(String id){ return System.currentTimeMillis() - ((Long)startTime.remove(id)).longValue(); } }
public main(String[] args) { // Start a global stopwatch StopWatch.start("GLOBAL"); // evaluate time used by task 1 StopWatch.start("TASK1"); executeTask1(); System.out.println("Time elapsed for task 1 : " + StopWatch.stop("TASK1") + "ms"; // evaluate time used by task 2 StopWatch.start("TASK2"); executeTask2(); System.out.println("Time elapsed for task 2 : " + StopWatch.stop("TASK2") + "ms"; // Display time elapsed for full processing System.out.println("Total processing time : " + StopWatch.stop("GLOBAL") + "ms"; }