M
Marteno Rodia
Hello,
today I have another newbie's question:
I have an external Java application and I need to invoke it in my
code. I have even access to the source code of this application so I
can do something like this:
String[] args = {"something", "something_else", "another_argument"};
ExtApp.main(args);
The problem is I want to run ExtApp silently - it means I don't want
it to print any messages on the error and standard output stream...
I'd like to redirect this information to a file or just ignore it. How
to do it?
MR
today I have another newbie's question:
I have an external Java application and I need to invoke it in my
code. I have even access to the source code of this application so I
can do something like this:
String[] args = {"something", "something_else", "another_argument"};
ExtApp.main(args);
The problem is I want to run ExtApp silently - it means I don't want
it to print any messages on the error and standard output stream...
I'd like to redirect this information to a file or just ignore it. How
to do it?
MR