我希望能够在我的java程序中启动,停止和配置zookeeper服务器。有没有办法能够做到这一点?
答案 0 :(得分:0)
您可以使用Runtime.getRuntime().exec()
和Java SE 1.5 ProcessBuilder
在Java中执行(生成)新流程还有一个选项apache open source project
String line = "AcroRd32.exe /p /h " + file.getAbsolutePath();
CommandLine cmdLine = CommandLine.parse(line);
DefaultExecutor executor = new DefaultExecutor();
int exitValue = executor.execute(cmdLine);