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 is a JAD file. When I click on it I got one download button and one cancel button. On clicking the download button it gi开发者_开发问答ves me information like "downloading failed".
When I click on the details button it says "invalid cod file not found". What should I do?
The .jad file does not contain any of your actual code. It is actually a text file, you can open it in a text editor and read it. The .jad file just contains pointers to your .code file(s). So, you need to make sure that your .cod file(s) are available in the same folder as the .jad file.
Build your app, and generate a .cod file. Then rename the .cod files to .zip file and then extract. Then you will get a set of .cod files. You need to have all of them and they should be signed.
You cannot download the .cod files to an SD card and install like Java ME. You need to either desktop software or your JDE or you need to deploy all of your .cod files along with your JAD file in some server. Then access the JAD file link from a browser. Here we go .. it's done.
精彩评论