Blackberry Can I view contents of .cod file?
Got a .jad and a bunch of .cod files. Can I view the contents开发者_运维技巧 of the .cod files? Thanks
.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.
精彩评论