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
1
vote
1 answer

Decompile class file in eclipse

I have configured the JadClipse plugin in Eclipse Kepler. I can decompile any class within a jar in eclipse. But how can I decompile a class, that is not in a jar, in eclipse? Just like in command prompt the jad -sjava HelloWorld.class command…
Leo
  • 5,017
  • 6
  • 32
  • 55
1
vote
1 answer

edit java class file JAD

i need to change the access modifier of one constructor in a class file... how do i do it with jad.. thanks all... raj...
Raj
  • 147
  • 4
  • 15
1
vote
1 answer

jad for blackberry non-midlet application

I am writing a regular application for Blackberry. I want to know, is there anything similiar to JAD for pure native blackberry application (no j2me) ? If JAD is applicable to regular BB app then please guide me to use JAD for it.
Durgesh
  • 23
  • 2
1
vote
2 answers

Unsupported Media Type when deploying OTA Blackberry App

I have a blackberry app that I am trying to deploy OTA (over the air). I have set the MIME type on my server to be: cod application/vnd.rim.cod jad text/vnd.sun.j2me.app-descriptor jar application/java-archive When I access the JAD file…
Sheehan Alam
  • 60,111
  • 124
  • 355
  • 556
1
vote
1 answer

Jad file download link for my website

I am putting up a small website via webs.com for me and my friends that could also be accessible via wap, i.e. mobile internet, and I want to add links to my site that downloads .jar files. I uploaded the files on my site, and links to the .jar…
user293278
1
vote
2 answers

Direct file download vs reading a file back as download

Is there any difference between creating a direct link to a file on a server, and doing something like reading the file from a location and setting the content type header then streaming back the data. I'm curious because I have a webserver that i'm…
TripWired
  • 378
  • 7
  • 17
1
vote
2 answers

why does google chrome open .jad file as text file rather than downloading it?

I have a link on my server that lets users download the .jad file I have got. But when I open this link in Google Chrome, it opens it as a text file rather than downloading the .jad file.
nikita sharma
  • 169
  • 1
  • 8
1
vote
1 answer

What is the C# equivalent to JAD?

What is the C# equivalent to Java's JAD and is there a VS plugin similar to Eclipse's JadClipse?
Taylor Leese
  • 51,004
  • 28
  • 112
  • 141
1
vote
2 answers

Too many cod-parts in jad file

I created a blackberry application but I am having problems publishing it on my web site. I have uploaded the jad, jar, alx and cod file (from which I extracted the whole content). I also added the missing MIME types. But when I try to download the…
ADB
  • 2,319
  • 1
  • 24
  • 35
0
votes
2 answers

Setting Midlet Icon using J2ME-Polish

I'm using J2ME Polish version 2.0.7 together with ant to build my Midlet application. In order to specifcy the main-class, name and icon of the application, the J2ME Polish documentation suggests that I use the midlet element inside the build…
takete.dk
  • 2,705
  • 1
  • 19
  • 12
0
votes
1 answer

BlackBerry: How to read in a JAD and extract the version number

I know the method ApplicationDescriptor.currentApplicationDescriptor(); But I aim to download another JAD and compare it's version number to the current applications version. What is the best/easiest way to do this? Is there a way to construct an…
cschuff
  • 5,502
  • 7
  • 36
  • 52
0
votes
1 answer

When I use JAD to decompile Java why do I get "JavaClassFileParseException: Invalid tag value 0x12"?

I use JAD to decompile Java .class files. It works fine for this program here: class HelloWorldPlain { public static void main(String[] paramArrayOfString) { System.out.println("Hello, World!"); } } Compiles nicely, runs nicely, decompiles…
StackzOfZtuff
  • 2,534
  • 1
  • 28
  • 25
0
votes
2 answers

How do I activate "Line wrap" in Jadx-gui?

The lines of the decompiled code exceeded the border and I would like to know how to activate line-wrapping in the Jadx viewer?
shluvme
  • 713
  • 7
  • 24
0
votes
2 answers

how to provide .jad file download link?

We are trying to provide a download link to abc.jad file in index.html. abc.jad and index.html are both in the same folder. Following is the link. download In spite of these, we are…
Jkalis A
  • 3
  • 4
0
votes
1 answer

How to deliver .jad file using Jersey Rest service?

I have to return a JavaME .jad file from restful web service (using Jersey), which is then used to install an app on a mobile phone. Before delivering the .jad file some values in there have to be changed. I was thinking of reading the original…
heapifyman
  • 161
  • 8