-
Notifications
You must be signed in to change notification settings - Fork 2.5k
JD-GUI successor - Suggestion to redirect users to JD-GUI-DUO #475
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
nbauma109
wants to merge
11
commits into
java-decompiler:master
Choose a base branch
from
nbauma109:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 6 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
fea5023
Project has moved
nbauma109 e9bb813
Project has moved - Fix grammar
nbauma109 762cfe7
Project has moved - Fix typo
nbauma109 98771d3
Update README.md
nbauma109 d4bc860
Revise project dependencies and decompiler support
nbauma109 dc4e03a
Update README with JRE generation details
nbauma109 86cae68
Update README.md
nbauma109 b562f92
Update README.md
nbauma109 dc599ad
Update README.md
nbauma109 e04d3f1
Update README.md
nbauma109 cf93c7b
Update README.md
nbauma109 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,65 +1,8 @@ | ||
| # JD-GUI | ||
|
|
||
| JD-GUI, a standalone graphical utility that displays Java sources from CLASS files. | ||
|
|
||
|  | ||
|
|
||
| - Java Decompiler projects home page: [http://java-decompiler.github.io](http://java-decompiler.github.io) | ||
| - JD-GUI source code: [https://github.com/java-decompiler/jd-gui](https://github.com/java-decompiler/jd-gui) | ||
|
|
||
| ## Description | ||
| JD-GUI is a standalone graphical utility that displays Java source codes of | ||
| ".class" files. You can browse the reconstructed source code with the JD-GUI | ||
| for instant access to methods and fields. | ||
|
|
||
| ## How to build JD-GUI ? | ||
| ``` | ||
| > git clone https://github.com/java-decompiler/jd-gui.git | ||
| > cd jd-gui | ||
| > ./gradlew build | ||
| ``` | ||
| generate : | ||
| - _"build/libs/jd-gui-x.y.z.jar"_ | ||
| - _"build/libs/jd-gui-x.y.z-min.jar"_ | ||
| - _"build/distributions/jd-gui-windows-x.y.z.zip"_ | ||
| - _"build/distributions/jd-gui-osx-x.y.z.tar"_ | ||
| - _"build/distributions/jd-gui-x.y.z.deb"_ | ||
| - _"build/distributions/jd-gui-x.y.z.rpm"_ | ||
|
|
||
| ## How to launch JD-GUI ? | ||
| - Double-click on _"jd-gui-x.y.z.jar"_ | ||
| - Double-click on _"jd-gui.exe"_ application from Windows | ||
| - Double-click on _"JD-GUI"_ application from Mac OSX | ||
| - Execute _"java -jar jd-gui-x.y.z.jar"_ or _"java -classpath jd-gui-x.y.z.jar org.jd.gui.App"_ | ||
|
|
||
| ## How to use JD-GUI ? | ||
| - Open a file with menu "File > Open File..." | ||
| - Open recent files with menu "File > Recent Files" | ||
| - Drag and drop files from your file explorer | ||
|
|
||
| ## How to extend JD-GUI ? | ||
| ``` | ||
| > ./gradlew idea | ||
| ``` | ||
| generate Idea Intellij project | ||
| ``` | ||
| > ./gradlew eclipse | ||
| ``` | ||
| generate Eclipse project | ||
| ``` | ||
| > java -classpath jd-gui-x.y.z.jar;myextension1.jar;myextension2.jar org.jd.gui.App | ||
| ``` | ||
| launch JD-GUI with your extensions | ||
|
|
||
| ## How to uninstall JD-GUI ? | ||
| - Java: Delete "jd-gui-x.y.z.jar" and "jd-gui.cfg". | ||
| - Mac OSX: Drag and drop "JD-GUI" application into the trash. | ||
| - Windows: Delete "jd-gui.exe" and "jd-gui.cfg". | ||
|
|
||
| ## License | ||
| Released under the [GNU GPL v3](LICENSE). | ||
|
|
||
| ## Donations | ||
| Did JD-GUI help you to solve a critical situation? Do you use JD-Eclipse daily? What about making a donation? | ||
|
|
||
| [](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=C88ZMVZ78RF22) [](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CRMXT4Y4QLQGU) | ||
| This project has moved [here](https://github.com/nbauma109/jd-gui-duo) ! | ||
|
|
||
| A lot of changes have made the project unlikely to be merged into the original one : | ||
|
nbauma109 marked this conversation as resolved.
Outdated
|
||
| * [ANTLR](https://www.antlr.org/) and the outdated JDK7 grammar [Java.g4](https://github.com/java-decompiler/jd-gui/blob/master/services/src/main/antlr/Java.g4) are dropped and replaced by [Eclipse JDT Core](https://github.com/eclipse-jdt/eclipse.jdt.core) to take advantage of nice features such as type bindings, compiler errors/warnings, and a more convenient AST | ||
|
nbauma109 marked this conversation as resolved.
Outdated
|
||
| * [Proguard](https://github.com/Guardsquare/proguard) is dropped as it made the project harder to maintain, the build really slow, and the errors harder to diagnose | ||
|
nbauma109 marked this conversation as resolved.
Outdated
|
||
| * JRE is now generated by [jre-builder](https://github.com/nbauma109/jre-builder) for the needs of the project in version 25 to take advantage of the latest libraries compiled in newer versions of Java | ||
| * Other decompilers are supported (CFR, Procyon, Fernflower, Vineflower, JADX) with the [transformer-api](https://github.com/nbauma109/transformer-api) (forked from [helios-decompiler](https://github.com/helios-decompiler/transformer-api)) | ||
| * Use of [JarComp](https://activityworkshop.net/software/jarcomp/index.html) and [netbeans diff module](https://github.com/nbauma109/netbeans-visual-diff-standalone) to provide a comparison feature | ||
|
nbauma109 marked this conversation as resolved.
Outdated
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.