JAVA调用windows的cmd命令
用起来会让程序变得更加简洁明了,非常实用。
核心就是使用 Runtime类。
cmd的xcopy就有很强大的文件夹,文件处理功能。
下面就以xcopy来说明,如何使用java调用cmd命令。
public static void folderCopy(String fromPath, String toPath) {
String strCmd = "cmd /c xcopy /Y " + fromPath + " " + toPath;
Runtime runtime = Runtime.getRuntime();
try {
runtime.exec(strCmd);
} catch (Exception e) {
System.out.println("Error!");
}
}
"cmd /c xcopy /Y " + fromPath + " " + toPath
cmd命令这里就不说明了。