Parsing a .sis (symbian) file using java

I want to read a .sis file (symbian content) with java and hopefully try to get as much meta information as possible from the binary, such as application name, version, platform support, and target languages. I think it can be done by looking at the symbian spec and I seem to remember another application that did it, but not really sure how to do it? Anyone have any insight?

+2


source to share


1 answer


There are two slightly different SIS file formats. An older version for Symbian OS up to 9.x and another with platform security add-ons for 9.x and later. I assume you want to decode this newer format.

Here's a link to the SIS file specification for 9.x and later .



For example code when parsing SIS 9.x files, check out sisinfo.py .

+3


source







All Articles