How to execute .jar file in c#

Jun 24 2009 12:48 PM
Hi everybody, im trying to execute a .jar file in my c# program, i have try several times and get examples, but i can't do it.

I execute in the cmd, like this
java -Xms60m -Xmx256m -jar C:\\Programming\\Interface.jar";
and this open the program.

But, trying with the Process class:

Process process = new Process();
System.Diagnostics.ProcessStartInfo procInfo =
new System.Diagnostics.ProcessStartInfo("java -Xms60m -Xmx256m -jar C:\\Programming\\Interface.jar");

process = System.Diagnostics.Process.Start(procInfo);

and other instructions, i get an exception, the file can't be found.

Some one knows??
Thanks in advance.


Answers (3)