decompiler

dotnet dll decompile and change the code

北城以北 提交于 2019-12-03 04:16:51
问题 I need to change the code of the .NET DLL. I am able to see the code by compilable the DLL with .NET reflector, but I am not able to change the code of the DLL. With .NET Reflector, I decompile the code and saved in to my hard disk, but when i am able to recompile the code its giving errors. Few code is decompiled in binary format few code is decompiled with c#. Is there any tool to change and recompile the DLL? Here are the tools I used for trying to decompile the DLL: ILSpy DisSharp

How to use ICSharpCode.Decompiler to decompile a whole assembly to a text file?

岁酱吖の 提交于 2019-12-02 21:51:35
问题 I need to get either the whole IL Code or Decompiled Source Code to a text file. Is that possible with the ILSpy Decompile Engine ICSharpCode.Decompiler? 回答1: With ILSpy, you can select an assembly node in the tree view, and then use File > Save Code to save the result to disk. ILSpy will use the currently selected language to do so, so it can both disassemble and decompile. When decompiling to C#, the save dialog will have options for saving a C# project (.csproj) with separate source code

Is it possible to decompile C++ Builder exe? Is C++ Builder exe safe?

眉间皱痕 提交于 2019-12-02 12:04:30
Is it possible to decompile C++ Builder exe? Is C++ Builder safe programming tools or anyone can decompile it and see the code? The short answer, yes, it can be decompiled, and it's not "safe". Anything ran on a computer can be disassembled and from that inspected by reading the disassembly. Decompiling would mean restoring even some of the original compiled source code - which indeed is possible, to some extent. After all, it is "just" about writing a program which can translate assembly to the desired language. If a human can do that, then a program can do that too, because it is only about

How to use ICSharpCode.Decompiler to decompile a whole assembly to a text file?

时间秒杀一切 提交于 2019-12-02 10:13:28
I need to get either the whole IL Code or Decompiled Source Code to a text file. Is that possible with the ILSpy Decompile Engine ICSharpCode.Decompiler? With ILSpy, you can select an assembly node in the tree view, and then use File > Save Code to save the result to disk. ILSpy will use the currently selected language to do so, so it can both disassemble and decompile. When decompiling to C#, the save dialog will have options for saving a C# project (.csproj) with separate source code files per class; or a single C# file (.cs) for the whole assembly. To decompile programmatically, use the

what is the best software to decompile a java class file? [closed]

和自甴很熟 提交于 2019-12-01 10:48:13
How do you batch decompile many class files? JD-Gui makes your life easy, it also has an eclipse plugin edit: updated the latest url for the tool I've used JAD but I'm not sure if it supports the more recent changes (Update: it does not support language features introduced in java 1.5). Otherwise you might be able to write a small java app to do batch decompiling using the core of JD . Take a look at Jode . You can disassemble .class files or complete .jars in one go. Although it claims to be up to date to an early version of Java (1.3), I've had few problems with later Java versions. I just

what is the best software to decompile a java class file? [closed]

偶尔善良 提交于 2019-12-01 09:34:15
问题 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 6 years ago . How do you batch decompile many class files? 回答1: JD-Gui makes your life easy, it also has an eclipse plugin edit: updated the latest url for the tool 回答2: I've used JAD but I'm not sure if it supports the more recent changes (Update: it does not support language features introduced in java 1.5). Otherwise you

Integrate an Android app (.apk) into an existing Android project

倾然丶 夕夏残阳落幕 提交于 2019-11-30 18:20:10
Here's the use case: A friend and I are building an Android app and along with it want to integrate a game. The core of the app has been built in Eclipse but we are looking into building the game with an app building tool like Google AppInventer ( http://appinventor.googlelabs.com/about/ ) or Corona ( http://www.anscamobile.com/corona/ ). We'd like the existing app we've built to have a button like "Play Game" which will launch the game we build using one of these utilities. However when I messed around with Google App Inventor I noticed that I could only export the project as a .apk, which

How to change already compiled .class file without decompile?

夙愿已清 提交于 2019-11-30 11:52:47
问题 I want to change .class file's method. I installed JD Eclipse Decompiler and opened the .class file. I added some codes and save .class file. But, .class file is not changing. I don't know how to use decompiler. And if is it possible, how to change .class file without using decompiler. I am using Ubuntu. Regards EDIT: Here is my decompiled code: /* */ package org.hibernate.id; /* */ /* */ import java.io.Serializable; /* */ import java.sql.ResultSet; /* */ import java.sql.SQLException; /* */

Eclipse “Enhanced Class Decompiler” plugin does not decompile when debugging

雨燕双飞 提交于 2019-11-30 10:59:36
问题 Problem description: Decompile works fine when viewing a class (i.e. Ctrl+Shift+T), but not when stepping into code from the debugging perspective - instead the "Class File Viewer" is opened. Version Used: Eclipse Oxygen and Enhanced Class Decompiler 3.0.0 回答1: This is how it should look at the beginning – at least in my case this did not allow me to decompile directly from the suspended threads view. 1) Add „Java Editor“ (Probably any other would do as well) at make it default. Of course

how to use DEXtoJar

别说谁变了你拦得住时间么 提交于 2019-11-30 10:08:03
问题 I find the solution to decompile a file dex to jar from this link http://code.google.com/p/dex2jar/downloads/list but i don't understand how to use it. 回答1: Follow the below steps to do so_ Rename your APK file(e.g., rename your APK file to .zip Ex- test.apk -> test.zip ) & extract resultant zip file. Copy your .dex file in to dex2jar folder. Run setclasspath.bat . This should be run because this data is used in the next step. Go to Windows Command prompt, change the folder path to the path