I know using QProcess can start .jar from Qt Windows application, but here I want to start .jar from Qt Symbian application.
As for Qt Windows application, we can using QProcess like:
QProcess::execute("java -jar PATH_TO_JAR_FILE"); // PATH_TO_JAR_FILE means the path to the .jar file
My question is in Symbian Qt application, how to use QProcess to start .jar/java application?
Is there any command lines/"java -jar" on Symbian platform?



