tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Tools and Libs > Jodd > Commons > How to find tools JAR path

How to find tools JAR path 

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.

File Name  :  
com/bethecoder/tutorials/jodd/cls/GetToolsJarPathTest.java 
Author  :  Sudhakar KV
Email  :  [email protected]
   
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);
  }

}
   

It gives the following output,
C:\Program Files\Java\jdk1.6.0_10\lib\tools.jar



 
  


  
bl  br