我想在java中运行像视频游戏这样的程序,让它输出它在java中所做的一切,这可能吗?为了澄清一切,我想看看游戏的输出方式。我理解它可能不会完全可理解,因为它将采用不同的程序语言。这里的任何人都记得使用gamehark / gamegenie来破解代码游戏吗?这就是我想要做的事情。
到目前为止,我尝试过运行时和流程构建器,但它没有任何内容。
以下是我的代码:
public class ProcessW {
public static void main(String[] args) throws IOException {
String command = "...my game...";
ProcessBuilder pb = new ProcessBuilder(command);
pb.redirectErrorStream(true);
Process proc = pb.start();
java.io.InputStream is = proc.getInputStream();
InputStreamReader isr = new InputStreamReader(is);
BufferedReader br = new BufferedReader(isr);
String line;
int exit = -1;
while ((line = br.readLine()) != null) {
// Outputs your process execution
System.out.println(line);
try {
exit = proc.exitValue();
if (exit == 0) {
// WinProcess finished
}
} catch (IllegalThreadStateException t) {
// The process has not yet finished.
// Should we stop it?
//if (processMustStop())
// processMustStop can return true
// after time out, for example.
proc.destroy();
}
}
}
}
答案 0 :(得分:1)
如果游戏在没有Java的情况下在控制台上打印某些东西,那么你的问题就是缓冲。只有在写入4096字节的输出后,Java才会看到游戏的输出。
防止这种情况的唯一方法是在每行之后更改游戏代码以调用stdout.flush()
(或类似),以强制操作系统将输出发送到Java进程。