Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This isn't exactly a programming question, but it is indirectly related to CLASSPATH errors.

I am unsure of the dependencies for this project. What is a good tool to search for a particular class name inside lots of jars files?

Thank you.

share|improve this question
Are you looking for references to that class or the actual class? – Uri Aug 27 '09 at 18:27
I am looking for the actual class. – Kapsh Aug 27 '09 at 18:35
4  
grep (the file names are text, so grep works just fine) – james Aug 27 '09 at 19:30

18 Answers

up vote 11 down vote accepted

Eclipse can do it, just create a (temporary) project and put your libraries on the projects classpath. Then you can easily find the classes.

Another tool, that comes to my mind, is Java Decompiler. It can open a lot of jars at once and helps to find classes as well.

share|improve this answer
Hmm thats an idea. I will try this out. – Kapsh Aug 27 '09 at 18:36

Use the jar (or unzip -v), grep, and find commands.

For example:

for i in *.jar; do jar -tvf "$i" | grep -Hsi ClassName; done

If you know the entire list of Java archives you want to search, you could place them all in the same directory using (symbolic) links.

Or use find (case sensitively):

find path/to/libs -name '*.jar' -exec grep -Hls ClassName {} \;

Or try this search engine:

Or create a graph using my software:

share|improve this answer
find <directory trees to search for .jar files> -name '*.jar' -print | while read i; do <same jar -tvf | grep as above>; done – mpez0 Aug 27 '09 at 18:50
5  
I frequently extend the pattern to: grep ... && echo "$i" That way, I can quickly determine which jar contained the class. – bkail Aug 28 '09 at 21:20
2  
Yes -l will give you that, but not very useful when it's getting its input from stdin. – Caffeine Coma Apr 3 '12 at 1:27

some time ago, I wrote a program just for that: http://code.google.com/p/jar-explorer/

share|improve this answer
Nice little program, very handy. – subtenante Oct 21 '11 at 12:46
Finds any type of file, not just classes. Double-click to see file contents. Yay, now I can spot all my spring-schemas. – Chris Noe Nov 8 '12 at 14:29
Very helpful. I was looking for a class in a third party app. It took 10 minutes to process all the jars, but then Bingo - I found the one I wanted. – Dave C Nov 9 '12 at 16:16
#!/bin/bash

pattern=$1
shift

for jar in $(find $* -type f -name "*.jar")
do
  match=`jar -tvf $jar | grep $pattern`
  if [ ! -z "$match" ]
  then
    echo "Found in: $jar"
    echo "$match"
  fi
done
share|improve this answer

I didn't know of a utility to do it when I came across this problem, so I wrote the following:

public class Main {

    /**
     * 
     */
    private static String CLASS_FILE_TO_FIND =
    		"class.to.find.Here";
    private static List<String> foundIn = new LinkedList<String>();

    /**
     * @param args the first argument is the path of the file to search in. The second may be the
     *        class file to find.
     */
    public static void main(String[] args) {
    	if (!CLASS_FILE_TO_FIND.endsWith(".class")) {
    		CLASS_FILE_TO_FIND = CLASS_FILE_TO_FIND.replace('.', '/') + ".class";
    	}
    	File start = new File(args[0]);
    	if (args.length > 1) {
    		CLASS_FILE_TO_FIND = args[1];
    	}
    	search(start);
    	System.out.println("------RESULTS------");
    	for (String s : foundIn) {
    		System.out.println(s);
    	}
    }

    private static void search(File start) {
    	try {
    		final FileFilter filter = new FileFilter() {

    			public boolean accept(File pathname) {
    				return pathname.getName().endsWith(".jar") || pathname.isDirectory();
    			}
    		};
    		for (File f : start.listFiles(filter)) {
    			if (f.isDirectory()) {
    				search(f);
    			} else {
    				searchJar(f);
    			}
    		}
    	} catch (Exception e) {
    		System.err.println("Error at: " + start.getPath() + " " + e.getMessage());
    	}
    }

    private static void searchJar(File f) {
    	try {
    		System.out.println("Searching: " + f.getPath());
    		JarFile jar = new JarFile(f);
    		ZipEntry e = jar.getEntry(CLASS_FILE_TO_FIND);
    		if (e == null) {
    			e = jar.getJarEntry(CLASS_FILE_TO_FIND);
    			if (e != null) {
    				foundIn.add(f.getPath());
    			}
    		} else {
    			foundIn.add(f.getPath());
    		}
    	} catch (IOException e) {
    		e.printStackTrace();
    	}
    }

}
share|improve this answer

Check JBoss Tattletale; although I've never used it personally, this seems to be the tool you need.

share|improve this answer
grep -l "classname" *.jar

gives you the name of the jar

find . -name "*.jar" -exec jar -t -f {} \; | grep  "classname"

gives you the package of the class

share|improve this answer

To locate jars that match a given string:

find . -name \*.jar -exec grep -l YOUR_CLASSNAME {} \;

share|improve this answer
This finds references to the class as well, not just the class itself. – Trevor Robinson Jul 5 '12 at 19:05

There are also two different utilities called both "JarScan" that do exactly what you are asking for: JarScan (inetfeedback.com) and JarScan (java.net)

share|improve this answer

You can find a class in a directory full of jars with a bit of shell:

Looking for class "FooBar":

LIB_DIR=/some/dir/full/of/jarfiles
for jarfile in $(find $LIBDIR -name "*.jar"); do
   echo "--------$jarfile---------------"
   jar -tvf $jarfile | grep FooBar
done
share|improve this answer

Basically let me look at the root of the problem brought up. If you are on a new project - why not come to the PM or technical lead and ask him - how does he track dependencies?

share|improve this answer

One thing to add to all of the above: if you don't have the jar executable available (it comes with the JDK but not with the JRE), you can use unzip (or WinZip, or whatever) to accomplish the same thing.

share|improve this answer

Just use FindClassInJars util, it's a simple swing program, but useful. You can check source code or download jar file at http://code.google.com/p/find-class-in-jars/

share|improve this answer

shameless self promotion, but you can try a utility I wrote : http://sourceforge.net/projects/zfind

It supports most common archive/compressed files (jar, zip, tar, tar.gz etc) and unlike many other jar/zip finders, supports nested zip files (zip within zip, jar within jar etc) till unlimited depth.

share|improve this answer
Could you give an example on a particular use, especially regarding this question? – Heskja Oct 20 '12 at 10:19

A bit late to the party, but nevertheless...

I've been using JarBrowser to find in which jar a particular class is present. It's got an easy to use GUI which allows you to browse through the contents of all the jars in the selected path.

share|improve this answer

Not sure why scripts here have never really worked for me. This works:

#!/bin/bash
for i in *.jar; do jar -tf "$i" | grep $1 | xargs -I{} echo -e "$i : {}" ; done
share|improve this answer

Following script will help you out

for file in *.jar
do
  # do something on "$file"
  echo "$file"
  /usr/local/jdk/bin/jar -tvf "$file" | grep '$CLASSNAME'
done
share|improve this answer

To search all jar files in a given directory for a particular class, you can do this:

ls *.jar | xargs grep -F MyClass

Output looks like this:

Binary file foo.jar matches

It's very fast because the -F option means search for Fixed string, so it doesn't load the the regex engine for each grep invocation. If you need to, you can always omit the -F option and use regexes.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.