jad

Is there a way to get jadclipse working with Eclipse 3.4?

I'm a big fan of the Jadclipse plugin and I'd really like to upgrade to Eclipse 3.4 but the plugin currently does not work. Are there any other programs out there that let you use jad to view source of code you navigate to from Eclipse? (Very useful when delving into ambiguous code in stack traces). ...

How to install a MIDlet on a SonyEricsson phone directly in the Organizer folder

This question refers strictly to Sony Ericsson phones running Java Platform 8 or higher. It is possible to instruct the AMS to install the application in one of the folders Applications or Games. But I want to install the MIDlet in a different folder. The target folders are Organizer, Entertainment or Location services. Is it possible t...

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 element. <build usePolishGui="false" > <midlet name="My Killer App." icon="/logo.png" clas...

What are my free and/or open source options for decompiling class files and JARs?

I'm familiar with JAD, and haven't found anything newer or better, but I really didn't look that hard because I had previous experience with the JAD tool. However, I might have missed some really good options out there. Did I miss anything good? If so, what is it and what features does it have in comparison to JAD? ...

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 application by requesting the jad file, I get a 500 error with the details saying that the...

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? ...

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 use to make this a valid property entry? Custom-Property-1: Nokia : 6150 / X.15 ...

Recompile decompiled Java (JD / JAD) source that contains goto instructions

(Related question: http://stackoverflow.com/questions/992930/java-compilers-or-jvm-languages-that-support-goto) I have decompiled a jar (Legally, for debugging purposes) and want to recompile it. I've used both JAD and JD and both don't compile due to goto instructions E.g. goto _L1 ... L1: return true; Is...

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 using to download apps to a blackberry, if i create a file and have a direct link to tha...

Jad file download link for my website

Hi sir/madam! 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 files went fine, but I also need links for .jad files (for some mobile phones t...

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 on my web-server through the BlackBerry Browser, I get the message Unsupported Media T...

Any maintained Open-Source Java Decompiler ?

Is there any maintained Open-Source Java Decompiler? Dava seems to be a thesis project rather than a programming tool. JReversePro shows signs of activity but has had no release since 2002 JODE has had no release since 2004 dcompiler has had no release since 2002 javap only shows assembly-level code Soot is not really a decompiler Fern...

jad for blackberry non-midlet application

Hi Experts, 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. Kind Regards -Durgesh O Mishra ...

Is there any Java Decompiler that can correctly decompile calls to overloaded methods?

Consider this (IMHO simple) example: public class DecompilerTest { public static void main(String[] args) { Object s1 = "The", s2 = "answer"; doPrint((Object) "You should know:"); for (int i = 0; i < 2; i++) { doPrint(s1); doPrint(s2); s1 = "is"; s2 = new Intege...

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 through System.getProperty. How can I do the same on android platform? ...

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... ...

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? ...

How to hide the midlet icon on Nokia phones in J2ME?

Hello Everyone, I have developed a midlet that is supposed to be invoked using Push Registry only. The user must not be able to manually start the app. I have achieved this by checking if the midlet was not invoked through Push Registry, then exit the midlet immediately. but is there any way to hide the app from application folder on No...

What would be a more accurate decompiler than jad for Eclipse to get rid of <-MISALIGNED ->?

I have used jad for many years, most of these with the Jadclipse plugin to eclipse which makes it quite usable. Especially with the "Align code for debugging" which allows you to see the decompiled code for any line in a stack trace. Very nice. Unfortunately I've seen more and more that the <- MISALIGNED -> comment sneaks in, which is...

Java, how to make undecompilable fragment of code?

Possible Duplicate: undecompilable source code in java You can make code undecompilable, the cuestion is how? I have a fragment of code in java microedition that is undecompilable by jd: public static void main(String args[]) { int s = getSize("",false); System.out.println(s); } public static int getSize(String re...