Reputation: 21335
Got a .jad and a bunch of .cod files. Can I view the contents of the .cod files? Thanks
Upvotes: 0
Views: 1034
Reputation: 1808
.cod files are basically .jar files that have been processed through RIM's compilation tool chain. Additionally RIM tools strip some information from the .jar files before cod-ifying them and if the size is too big, it splits and zips the pieces. So if you have a bunch of .cod files for the same .jad file you should first try unzipping them using a standard zip program then join them using some concat utility and finally try using a .jar file decompiler to see if you can hack the byte code. That is pretty much your best bet.
Upvotes: 1