ThexXTURBOXx / dex2jar

Tools to work with android .dex and java .class files
Apache License 2.0
234 stars 59 forks source link

Can't open Jar #8

Closed benni347 closed 3 years ago

benni347 commented 3 years ago

Hello, When I decompile it with the dex2jar.sh and try to open it in my java editor (Intellij IDEA) it doesn't open any ideas on how I can fix that? Kind regards

ThexXTURBOXx commented 3 years ago

Hello, you can't open a jar file directly via IntelliJ. You might try a decompiler first or add the jar as a library to the classpath inside IntelliJ. Then, IntelliJ's decompiler (FernFlower) will do its work automatically. If you need any decompiler, I would recommend https://github.com/Konloch/bytecode-viewer which features various decompilers in a single GUI. A decompiler is used to reconstruct Java source files from jar or class files (the jar or class files are compiled Java code, which only the JVM can read and understand :)

ThexXTURBOXx commented 3 years ago

Closing this as off-topic