Java FAQ
|
Windows環境でJavaアプリケーションからDIRコマンドを実行する方法を教えてください。 |
/** DIRコマンドを実行する */ import java.io.*; class ExecDir{ static void main(String args[]) { try { Process child = Runtime.getRuntime().exec("command.com /c dir"); InputStream is = child.getInputStream(); BufferedReader br = new BufferedReader(new InputStreamReader(is)); String line; while ((line = br.readLine()) != null) System.out.println(line); } catch (IOException e) { } } }