2006年9月4日 星期一

Java 執行外部命令

執行 command.exe 中的命令

String os = System.getProperty("os.name");

String command;

if (os.equals("Windows NT") ||

os.equals("Windows 2000"))

{

command = "cmd.exe /c dir " + dirName;

}

else

{

command = "command.com /c dir " + dirName;

}

Process p = Runtime.getRuntime().exec( command );





參考 java.lang.Runtime java.lang.Process
 

沒有留言:

張貼留言