-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,23 @@ | ||
ClassFinder | ||
=========== | ||
|
||
Java Class Finder tool to search jar files for classes | ||
Java Class Finder tool to search .jar and .zip files for Java classes. | ||
|
||
ClassFinder does provide a CLI as well as a GUI. | ||
When no parameters are provided ClassFinder will try to instantiate a GUI on an X11 terminal. | ||
If this isn't successful, either because $DISPLAY hasn't been exported appropriately or | ||
be cause no X11 terminal exists, the program will automatically print its CLI parameters and exit: | ||
|
||
Usage: java -jar ClassFinder.jar|com.optit.ClassFinder -d [directory] -c [classname] -m -v -help|-h|--help|-? | ||
|
||
[-d] The directory to search in | ||
[-c] The classname to search for | ||
[-m] Match case | ||
[-r] Recursive search (search sub directories) | ||
[-v] Enables verbose output | ||
[-help|--help|-h|-?] Display this help | ||
|
||
The directory specified will be searched recursviely. | ||
The class name can either just be the class name (e.g. String) or the fully qualified name (e.g. java.lang.String) | ||
|
||
Good hunting! |