问候,
这是一个相当明确的问题。
我必须使用<java>
启动一个java作业,该作业将与ant并行运行,如果作业超过了蚂蚁进程,那就没关系,因此spawn="true"
。
我必须在指定的文件中看到作业输出。 output="job.out"
通过spawn="false"
完全可以实现这一点,但spawn"=true"
让我感到非常幸运。
那么,是否存在任何谦虚的黑客攻击,或者我真的必须使用java
来调整exec
来电,如下所示?
CMD /C my-java-command-and-hardcoded-classpath-goes-here > job.out
谢谢, 安东
答案 0 :(得分:2)
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.PrintStream;
import java.lang.reflect.InvocationTargetException;
import java.util.Arrays;
public class StreamRedirector {
public static void main(String[] args) throws FileNotFoundException, ClassNotFoundException,
NoSuchMethodException, InvocationTargetException, IllegalAccessException {
System.out.println(Arrays.toString(args));
// parse the arguments
if (args.length != 2) {
throw new IllegalArgumentException(
"Usage:" +
"\targ0 = wrapped main FQN;\n" +
"\targ1 = dest output file name;\n" +
"\tother args are passed to wrapped main;"
);
}
String mainClass = args[0];
String destinationFile = args[1];
// redirect the streams
PrintStream outErr = new PrintStream(new FileOutputStream(destinationFile));
System.setErr(outErr);
System.setOut(outErr);
// delegate to the other main
String[] wrappedArgs = new String[args.length - 2];
System.arraycopy(args, 2, wrappedArgs, 0, wrappedArgs.length);
Class.forName(mainClass).getMethod("main", String[].class).invoke(null, (Object) wrappedArgs);
}
}