(String path)
| 36 | } |
| 37 | |
| 38 | public void loadLibrary(String path) { |
| 39 | if (path != null) { |
| 40 | ClassLoader.load(path, ClassLoader.getCaller(), true); |
| 41 | } else { |
| 42 | throw new NullPointerException(); |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | public Process exec(String command) throws IOException { |
| 47 | StringTokenizer t = new StringTokenizer(command); |