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.
|
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. |
|||||||||
|
|
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. |
|||
|
|
|
Use the For example:
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
Or try this search engine: Or create a graph using my software: |
|||||||||||
|
|
some time ago, I wrote a program just for that: http://code.google.com/p/jar-explorer/ |
|||||||
|
|
||||
|
|
|
I didn't know of a utility to do it when I came across this problem, so I wrote the following:
|
|||
|
|
|
Check JBoss Tattletale; although I've never used it personally, this seems to be the tool you need. |
|||
|
|
gives you the name of the jar
gives you the package of the class |
|||
|
|
|
To locate jars that match a given string:
|
|||
|
|
There are also two different utilities called both "JarScan" that do exactly what you are asking for: JarScan (inetfeedback.com) and JarScan (java.net) |
|||
|
|
|
You can find a class in a directory full of jars with a bit of shell: Looking for class "FooBar":
|
|||
|
|
|
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? |
|||
|
|
|
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. |
|||
|
|
|
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/ |
|||
|
|
|
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. |
|||
|
|
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. |
|||
|
|
|
Not sure why scripts here have never really worked for me. This works:
|
|||
|
|
|
Following script will help you out
|
||||
|
|
|
To search all jar files in a given directory for a particular class, you can do this:
Output looks like this:
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. |
|||
|
|