Questions tagged [jad]

Jad (JAva Decompiler) is a decompiler for the Java programming language.

Jad (JAva Decompiler) is a decompiler for the Java programming language. Jad provides a command-line user interface to extract source code from class files. The most popular GUI for Jad is DJ Java Decompiler. There is also an eclipse plugin called JadClipse.

Jad GUI & IDE's plugins

69 questions
0
votes
1 answer

Is there an Android JAD-type file that can pass parameters to the APK?

In J2ME midlet development, you can pass runtime parameters to the midlet through a JAD file. Is there anything like this with Android? What I want is to pass basic custom information to the APK Activity when a user downloads it.
bubbo
  • 1
0
votes
2 answers

Downloading JAD file on BlackBerry simulator 9550

I have a JAD File which I want to run on my simulator. So I do these things to download that JAD file on my simulator ... I have changed the SD card and browse that project where the JAD file is kept. Now when I browse that SD card I find there…
BBdev
  • 4,898
  • 2
  • 31
  • 45
0
votes
2 answers

Problem while setting jad with Eclipse Helios

I am using jad to decompile my java class files through Eclipse. I have installed net.sf.jadclipse_3.3.0.jar plugin for Eclipse I put the jar in the Eclipse plugins directory. Next I have downloaded the jad windows plugin (jadretro-win32-x86-jcgo)…
titorcks
  • 43
  • 5
0
votes
1 answer

How to offer anitleeching method of a JAD OTA link

Ok, I am currently using a download script in PHP which queries a mySQL database and checks if that token has been downloaded (this token I create manually through a generate script). So for example my generate link would be…
Drew M
  • 1
0
votes
0 answers

Know the version of the compiler

I have only one file available. jad, and all the source folder. I would have to know the version of the compiler that compiled the application (I did not have access to. cod) ... Is this possible? Thank you in advance Jeremie
Jeremie
  • 23
  • 3
0
votes
0 answers

Jad decompile .class file issues - find some unknown characters in private variables

When I used JAD to decompile .Class Files, the private variables show unknown characters in private variables. My command as below: jad.exe -r -ff -d classes -s java classes/**/*.class I have tried other decompilers (CFR,Procyon,Fernflower) and…
CharlesJia
  • 21
  • 3
0
votes
0 answers

Eclipse oxygen, Java: cannot run project

project: lwjgl is installed because I am trying to make a 3d game. presently I am trying to figure out how Minecraft random terrain generation works. however i am unable to run the project. When I try to run my project with plugins test in eclipse…
user8630311
0
votes
1 answer

JAva Decompiler (JAD) - Do not output a class name with slashes

When I'm using the GUI edition, it's shown as Intent localIntent = new Intent(this, Someclass.class); But in console mode with parameters jad -o -r -b -f -sjava Someclass.class It's outputed as Intent intent = new Intent(this,…
Ivan
  • 361
  • 3
  • 16
0
votes
1 answer

How to tell cell phone to install midlet in applications folder?

I'd like to suggest where the phone should install the j2me app. For instance, on Nokia phones, it always install them in games folder. Is there a way to suggest a destination folder? Either in .jad file or in MANIFEST file?
Igor Gatis
  • 4,648
  • 10
  • 43
  • 66
0
votes
1 answer

J2ME JAD file analog in Android

When my server gaves apk file to user, I need to put some values In this file, for j2me platform I use JAD file, and put my values there: MY_KEY: SomeKeyValue MY_KEY2: SomeKeyValue2 When j2me application starts on device, I can access this values…
Arkaha
  • 1,582
  • 3
  • 17
  • 19
0
votes
1 answer

Java decompiler is not giving full source code

I have tried to decompile .class file with JD. BUt i got Strange code in it(Static call to a non static method, Classname.this.method etc.) . Could you please tell me whether it will give 100 percent source code or not?
Raj Pannala
  • 67
  • 1
  • 9
0
votes
2 answers

Jadclipse is not working in Eclipse Kepler SR2

Here is what I did: Installed Jadclipse plugin for Eclipse 4.* Ran Eclipse with -clean Set the editor for "Class without source" to "Class decompiler viewer" (there were no explicit jad decompiler or the like) Opened a .class file with "Class…
Adam Arold
  • 29,285
  • 22
  • 112
  • 207
0
votes
0 answers

Error while using JAD to decompile java class

I am trying to decompile a Java class to analyze its source code using JAD tool. However, I am getting this error once I run it: ./jad: error while loading shared libraries: libstdc++-libc6.2-2.so.3: cannot open shared object file: No such file or…
yassine93
  • 39
  • 3
0
votes
1 answer

Jad File Signature

I want to sign jad files. I checked the internet for *.jad file signature. I found this site I used this command for signing the jad file. Java -jar JadTool.jar -addcert -keystore -alias -storepass -inputjad…
dgn
  • 103
  • 5
  • 15
0
votes
1 answer

What is the escape character/sequence for properties in a JAD file

Is there a character or encoding I can do to escape a custom property in a JAD file for a J2ME application? Example: Would the extra : in this property break the Jad on some devices, and is there an escape language (like HTML encoding) that I could…
GrahamMc
  • 3,034
  • 2
  • 24
  • 29