decompiler

Decompile Python 2.7 .pyc [closed]

℡╲_俬逩灬. 提交于 2019-11-26 09:16:01
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I\'ve searched up and down, but can\'t find a de-compiler that will work for Python 2.7 .pyc. Does anybody know of one that will work for Python 2.7? Thanks 回答1: UPDATE (2019-04-22) - It sounds like you want to use uncompyle6 nowadays rather than the answers I had mentioned originally. This sounds like it works:

How to decompile a whole Jar file? [closed]

泪湿孤枕 提交于 2019-11-26 05:49:26
问题 Does anyone know of a free decompiler that can decompile an entire Jar file instead of a single class? I have a problem with sub classes like name$1.class name$2.class name.class 回答1: 2009: JavaDecompiler can do a good job with a jar: since 0.2.5, All files, in JAR files, are displayed. See also the question "How do I “decompile” Java class files?". The JD-Eclipse doesn't seem to have changed since late 2009 though (see Changes). So its integration with latest Eclipse (3.8, 4.2+) might be

How to decompile a whole Jar file? [closed]

萝らか妹 提交于 2019-11-26 05:35:43
Does anyone know of a free decompiler that can decompile an entire Jar file instead of a single class? I have a problem with sub classes like name$1.class name$2.class name.class VonC 2009: JavaDecompiler can do a good job with a jar: since 0.2.5, All files, in JAR files, are displayed. See also the question "How do I “decompile” Java class files?" . The JD-Eclipse doesn't seem to have changed since late 2009 though (see Changes ). So its integration with latest Eclipse (3.8, 4.2+) might be problematic. JD-Core is actively maintained. Both are the result of the fantastic work of (SO user)

How to decompile a whole Jar file? [closed]

非 Y 不嫁゛ 提交于 2019-11-26 04:28:50
问题 Does anyone know of a free decompiler that can decompile an entire Jar file instead of a single class? I have a problem with sub classes like name$1.class name$2.class name.class 回答1: 2009: JavaDecompiler can do a good job with a jar: since 0.2.5, All files, in JAR files, are displayed. See also the question "How do I “decompile” Java class files?". The JD-Eclipse doesn't seem to have changed since late 2009 though (see Changes). So its integration with latest Eclipse (3.8, 4.2+) might be

decompiling DEX into Java sourcecode

痞子三分冷 提交于 2019-11-26 00:18:30
问题 How can one decompile Android DEX (VM bytecode) files into corresponding Java sourcecode? 回答1: It's easy Get these tools: 1) dex2jar to translate dex files to jar files 2) jd-gui to view the java files in the jar The source code is quite readable as dex2jar makes some optimizations. Procedure: And here's the procedure on how to decompile: Step 1: Convert classes.dex in test_apk-debug.apk to test_apk-debug_dex2jar.jar d2j-dex2jar.sh -f -o output_jar.jar apk_to_decompile.apk d2j-dex2jar.sh -f

How do I “decompile” Java class files? [closed]

时光总嘲笑我的痴心妄想 提交于 2019-11-25 23:57:58
问题 What program can I use to decompile a class file? Will I actually get Java code, or is it just JVM assembly code? On Java performance questions on this site I often see responses from people who have \"decompiled\" the Java class file to see how the compiler optimizes certain things. 回答1: Update February 2016: www.javadecompilers.com lists JAD as being: the most popular Java decompiler, but primarily of this age only. Written in C++, so very fast. Outdated, unsupported and does not decompile

How does one decompile and recompile a database application?

偶尔善良 提交于 2019-11-25 21:52:57
问题 I have an Access database application and I would like to know the proper way of decompiling and recompiling it. 回答1: The accepted answer is great, but it's a little impractical to create a shortcut for every database. You can save this as a powershell module. #for use with MSAccess 2010 Function Decompile-AccessDB{ param ([string]$dbFileName) [string]$argument = '"' + $dbFileName + '"' + "/Decompile" Start-Process -FilePath 'C:\Program Files (x86)\Microsoft Office\Office14\MSACCESS.EXE'