I have a c# program that access a java program by tcp. In my C# program I'm starting the java program by this line of code:
var process = new Process
{
StartInfo =
{
UseShellExecute = false,
CreateNoWindow = false,
FileName = "cmd.exe",
Arguments = (@"/c java -ms16m -mx512m -jar pathToJavaApp/javaApp.jar 3562")
}
};
This works fine I had no problems until now. I've installed my program on a colleague's computer. Now I'm getting the error: Unable to access the jar file.
So I tried in command line "java -jar javaApp.jar" and the javaApp starts immediately.
I tried starting the program as administrator, same error. (windows vista)
For the moment I have no idea what the problem could be.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…