我正在使用 java picocli 构建一个命令行应用程序,它基本上包装了 npm、maven、git、azure 和一些我想要预先完成的实用程序命令。我的问题是,例如,当 npm install 运行时,它会打印一整套内容,例如关于它安装的所有内容和日志的警告,以及写入大量内容的进度条。有什么方法可以模拟我的应用程序吗?现在我有这个来运行一个进程:
protected static void run(String dir, String... strings) {
try {
var process = new ProcessBuilder(strings).directory(new File(dir)).start();
process.waitFor();
write(process.getInputStream(), System.out);
} catch (IOException | InterruptedException e) {
e.printStackTrace();
}
}
private static void write(InputStream stream, PrintStream out) throws IOException {
String line = null;
StringBuffer buffer = new StringBuffer();
var reader = new BufferedReader(new InputStreamReader(stream));
while ((line = reader.readLine()) != null)
buffer.append(line);
out.println(buffer.toString());
}
有什么方法可以让我获得其他打印件以及进度条吗?现在我只得到最后的 5 行,说明安装后漏洞的数量?