| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/biblelamp/JavaExercises/master/Experiments/RuntimeExample.java | [Back] [Original] |
import java.io.*;
public class RuntimeExample {
public static void main(String[] args) {
try {
Process runtime = Runtime.getRuntime().exec("cmd /c start dir *.java");
} catch (Exception e) { e.printStackTrace(); }
}
}
| Web Proxy Viewer | New URL | Original Page |