Executing Command Line Commands via Java
Executing external commands from a Java program can be useful for automating tasks or accessing system functionality. However, as demonstrated in the initial question, simply using Runtime.getRuntime().exec() may not yield the desired behavior, especially when interacting with the Windows command prompt.
To resolve this issue, a more advanced approach is required. As suggested in the quoted post, one effective solution involves reusing a process to execute multiple commands. The following code exemplifies this technique:
String[] command = {"cmd"}; Process p = Runtime.getRuntime().exec(command); new Thread(new SyncPipe(p.getErrorStream(), System.err)).start(); new Thread(new SyncPipe(p.getInputStream(), System.out)).start(); PrintWriter stdin = new PrintWriter(p.getOutputStream()); stdin.println("dir c:\ /A /Q"); // Add additional commands here stdin.close(); int returnCode = p.waitFor(); System.out.println("Return code = " + returnCode); class SyncPipe implements Runnable { public SyncPipe(InputStream istrm, OutputStream ostrm) { istrm_ = istrm; ostrm_ = ostrm; } public void run() { try { byte[] buffer = new byte[1024]; int length; while ((length = istrm_.read(buffer)) != -1) { ostrm_.write(buffer, 0, length); } } catch (Exception e) { e.printStackTrace(); } } private final OutputStream ostrm_; private final InputStream istrm_; }
Explanation:
This approach allows for a more interactive execution of commands on the Windows command prompt from within a Java application.
The above is the detailed content of How Can I Efficiently Execute Multiple Command Line Commands from a Java Program?. For more information, please follow other related articles on the PHP Chinese website!