Hi everybody.
I have some SIS applications(for nokia)and i want to convert them to JAR.
Anyway ??:D:D:D
Printable View
Hi everybody.
I have some SIS applications(for nokia)and i want to convert them to JAR.
Anyway ??:D:D:D
no way man... if anyone did make it... some of the functions will not work... it will be crappy..
It`s not possible.
Nice day
Not good :( the sis applications are so good :)
Simply Impossible.
Hey guys first poster here just wondering how to install sis files on a W580i without the cd cause i have xp pro and it needs xp sp-2 so is there anyway to do this? Also great site here ive been a motorola guy for 7yrs just got my sony and love it.
decompile SIS, write code on Java, compile, pack :)
simple moves? simple only for god ;)
Be careful, there's a fake doing the rounds called:
Sis_To_SisX___Java_Converter.exe
Basically, it's a fake and doesn't work (it may possibly be a virus). As stated by others, it's basically impossible unless you can somehow get the source of the sis program and reprogram it all in java.
i has seen a program with this ability
sis to jar(i think)
You have seen a fake program ali_power there is not way for a program to do this.
Symbian programs (.sis) are created in C or C++, which gets then compiled to a native binary file that uses cpu, os and library calls on the target system to work. Given that a compile uses several techniques to enhance performance of the end system, and that every compiler and library used to compile differs, it's impossible to decompile native binary code to other than assembly for the architecture.
Midlets, or J2ME programs, are coded in Java, a reduced version of java designed to fit mobile and small devices. Java is a completely different language to C/C++, and it compiles it's code to a special binary representation that is run by a virtual machine on the device, making calls to the virtual machine basic specs, and standard or self-included Java libraries to work.
So, your only recourse would be to decompile the sis program to assembly. Then spend a few months or years reading it line by line and reverse engineering by hand what each line and section of the decompiled program calls and does.
Then you would have to take your notes of how the program works, and write the program from scratch, line by line, based on the algorithms you've deciphered, in Java.
It would take several months if not years... and that is if it's possible at all, since the API (calls available to the program) in Symbian is much wider and in a sense powerfull than those available to J2me (java), since Symbian is the OS in a device, and you're basically writing programs that work with the OS directly. Java is a program inside the device and you interact with what the manufacturer decided to make available when coding the java engine for their mobile.