Back to project page YourConsole.
The source code is released under:
MIT License
If you think the Android project YourConsole listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.akisute.yourconsole.app.helper; /*from w w w . ja va 2 s . com*/ import java.io.IOException; import java.util.List; public class RuntimeHelper { public static Process exec(List<String> args) throws IOException { return Runtime.getRuntime().exec(args.toArray(new String[args.size()])); } public static void destroy(Process process) { process.destroy(); } }