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

What is your favorite tool, plugin, script, to find a java class in a bunch of jar files?

Very often I inherit code that complains about a class that doesn't exist, and it is just because the jar file is not included in the classpath. But, in what jar file(s) is the class? I may not have the JAR (so I have to search online), or adding a JAR to the classpath could create a duplicated class definition problem.

I obviously would prefer an eclipse plugin, but I'm open to any piece of software that works with Windows.

I know... Windows is not my choice, but that's what I got to work with.

Thanks!

Luis

P.S. Thank you for your answers. After reviewing some responses, I became aware that I should have explained better my scenario. We had a library of downloaded or created JAR files, but sometimes the class would be online somewhere.

share|improve this question

10 Answers

In the same lines as BalusC's answer (I can't post comment yet nor link 2 urls, no reputation :( ), you can find a jar thanks to these 2 jar finder engines: - http://www.jarfinder.com/ - findjar

share|improve this answer
jarfinder IS your friend. – Tom Aug 16 '10 at 22:11
The website has moved to : findjar.com – code-gijoe Feb 1 '11 at 20:24

To search all jars in the current folder and below for class named a.b.c.D do a:

find . -iname *.jar | while read JARF; do jar tvf $JARF | grep a/b/c/D.class && echo $JARF ; done

I've built a simple script ('findinjars') which does just that:

#!/bin/bash
if [ $# -ne 2]         
then
    echo "usage is $0 <top-of-folder-hierarchy> <grep pattern to look for in 'jar tvf' output>"
else
    FOLDER=$1
    THING_TO_LOOKFOR=$2
    find $FOLDER -iname \*.jar | while read f ; do echo $f && (jar tvf $f | grep -i $THING_TO_LOOKFOR) ; done
fi 

you can then invoke it with:

$findinjar foldername a.b.c.d.Class

Dot characters in the fully qualified class name will be interpreted in the regexp sense of 'any character' but that's not a big deal since this is a heuristics utility.

share|improve this answer

I usually employ bash for that: grep -lr "ClassName" . The trick is that names aren't encoded in any way. You can open jar file in text editor and you'll see them. (You can even include package name in search query.)

I suspect, there's some windows equivalent too.

share|improve this answer
Yeah, but the problem is that it's hard to tell if the file contains a definition or a use of the class. And, yes, there's a grep utility that can be downloaded. Thanks! – luiscolorado Aug 16 '10 at 21:56
@luiscolorado It's never given me false positive before. I don't know, probably most of content (including referenced classes) is encoded in some way. – Nikita Rybak Aug 16 '10 at 22:02
Mmmmmhh... Unfortunately I got a bunch of false positives. Or maybe it's because the class has the same name across multiple packages. In any case, I'll give it another shot. Thanks, Nikita! – luiscolorado Aug 16 '10 at 22:12

I have written a program for this: http://code.google.com/p/jar-explorer/ It will also decompile existing byte code to show you interfaces, methods, super classes, will show contents of other resources - text, images, html, etc.

share|improve this answer

I ran into the same problem countless times, so I wrote a little tool to find them.

A simple command line: findclass MyClass -classpath ...

It searches directories, jar, zip, war and ear files for your class. I wrote it a few years back and use it all the time. I thought others might find it useful too so I uploaded onto github.

It's freely available to download: https://github.com/eurozulu/Findclass/tree/master/dist

If you want to look at the source, it's in the same site: https://github.com/eurozulu/Findclass/tree/master

If you like it, just let me know to give me that warm comfy feeling :)

share|improve this answer

You could always add the Reference library to your project in Eclipse and then in Package Browser, just expand the packages in the JAR file until you find the class that you are looking for.

share|improve this answer
Certainly! Although I was looking for something faster :) I must have at list 20 jar files in this project, and who knows how many classes. – luiscolorado Aug 16 '10 at 21:53
1  
For jars on the build path, just use Ctrl-Shift-T to locate a class. – Thorbjørn Ravn Andersen Aug 16 '10 at 21:55
Still not my cup of tea, but we'll see. – luiscolorado Aug 16 '10 at 22:05

@Nikita Rybak: AstroGrep for Windows is our friend: http://astrogrep.sourceforge.net/

share|improve this answer
I liked AstroGrep! I found it friendly compared with the command line version. However, it has the same problem that any grep (see my comment to Nikita Rybak). – luiscolorado Aug 16 '10 at 22:08
True... but with AstroGrep you can set it to return +/- N number of lines. So it's certinaly not the best option, but it might work. – NinjaCat Aug 16 '10 at 22:11

Very often I inherit code that complains about a class that doesn't exist, and it is just because the jar file is not included in the classpath.

If it's not in the classpath, then you likely don't have the JAR file itself at all. Searching via Eclipse's builtin Ctrl+Shift+T function won't help much. Usually you can make use of the package name to "guess" where you could get the JAR file from at the internet. E.g. a org.apache.commons.lang.XXX class is available at http://commons.apache.org/lang.

For the unobvious ones, I myself use http://www.jarhoo.com, the JAR search engine (which is unfortunately unavailable at that moment!).

share|improve this answer
1  
If it's not in the classpath, then you likely don't have the JAR file itself at all Well, it often happened to me with jboss. Hundreds of internal libs and you often need few of them to compile your code. Thanks for the link, though, that's interesting. – Nikita Rybak Aug 16 '10 at 22:00
@Nikita: In that specific case, you'd rather like to update the target server of your dynamic web project to JBoss. – BalusC Aug 16 '10 at 22:17

use this:

public class Main {

    private static final String SEARCH_PATH = "C:\\workspace\\RPLaunch";
    private static String CLASS_FILE_TO_FIND =
            "javax.ejb.SessionBean";
    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) {
        File start;
        new Scanner(args[0]);
        if (args.length > 0) {
            start = new File(args[0]);
            if (args.length > 1) {
                CLASS_FILE_TO_FIND = args[1];
            }
        } else {
            start = new File(SEARCH_PATH);
        }
        if (!CLASS_FILE_TO_FIND.endsWith(".class")) {
            CLASS_FILE_TO_FIND = CLASS_FILE_TO_FIND.replace('.', '/') + ".class";
        }
        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());
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
share|improve this answer

I use jarscan. It is an executable jar file that can recursively search an entire folder structure for jars that contain the class that you are looking for. It searches by class name, package name or regex.

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.