本文介绍了Java中的运行时类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在Runtime.getRuntime().exec()的帮助下执行Java程序.例如,我们将java文件路径命名为c:/java/abc.java.请帮助我提供代码.

How to execute a java program with the help of Runtime.getRuntime().exec().For example we shall have the java file path as c:/java/abc.java. Please help me with the code.

推荐答案

您应使用 ProcessBuilder 而不是运行时.基本用法如下:

You should use ProcessBuilder instead of Runtime. Basic usage is like:

Process process = new ProcessBuilder(command).start();

您将在上面的链接下找到更多代码.另请参见此问题

You will find more code under the link above. Also see this question.

这篇关于Java中的运行时类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-28 15:09
查看更多