且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在Java中创建进程

更新时间:2022-05-24 05:30:05

只有一种方法可以用Java创建进程, Runtime.exec() - 基本上它允许你像通过命令行界面一样启动新的JVM。

There is only one way to create processes in Java, Runtime.exec() - basically it allows you to start a new JVM just as you would via the command line interface.