D
Danger_Duck
So I have a method that includes a few lines that will create a batch
file and run it using Java.lang.Process, but lately I've gotten a
mysterious return value:
Process proc = Runtime.getRuntime().exec(binDirectory + "temp.bat");
proc.waitFor();
System.out.println("Exit value = " + proc.exitValue());
--> Gives me 35584 instead of 0 here.
May be unrelated to the issue I'm trying to solve where for some
reason I cannot call a constructor in my class
(NoClassDefFoundError), but I'm curious as to what this means.
The Sun Javadoc only tells me that 0 is the normal value while a
google search is most unhelpful. I'm ever-hopeful that someone here
can explain what's going on.
Thanks!
file and run it using Java.lang.Process, but lately I've gotten a
mysterious return value:
Process proc = Runtime.getRuntime().exec(binDirectory + "temp.bat");
proc.waitFor();
System.out.println("Exit value = " + proc.exitValue());
--> Gives me 35584 instead of 0 here.
May be unrelated to the issue I'm trying to solve where for some
reason I cannot call a constructor in my class
(NoClassDefFoundError), but I'm curious as to what this means.
The Sun Javadoc only tells me that 0 is the normal value while a
google search is most unhelpful. I'm ever-hopeful that someone here
can explain what's going on.
Thanks!