Jodd is an open-source java library with lot of reusable components and feature rich utilities. This requires the library jodd-3.3.2.jar to be in classpath. The following example shows how to use ClassLoaderUtil.findToolsJar() API.
package com.bethecoder.tutorials.jodd.cls; import java.io.File; import jodd.util.ClassLoaderUtil; public class GetToolsJarPathTest { /** * @param args */ public static void main(String[] args) { File toolJARPath = ClassLoaderUtil.findToolsJar(); System.out.println(toolJARPath); } }
C:\Program Files\Java\jdk1.6.0_10\lib\tools.jar