我有这个字符串,我在 Windows XP 的 JVM 中与 Runtime.exec() 一起使用。
String cmd = encoderFull + " " + "-i " + originalFull + " "+ "-bitrate" + " " + bitrateVBR[i] + " " + "-bvhq"+ " " + "-avi " + outputFull + " " + "2>&1" + " " + "1>"+ outputFile + ".txt";
不幸的是 '2>&1 1>output.txt' 不起作用。其余的还可以。有没有办法使用命令来创建这个文件?
再见,大卫