标签:run ati str void 文件处理 stat xcopy sys nbsp
JAVA调用windows的cmd命令
用起来会让程序变得更加简洁明了,非常实用。
核心就是使用 Runtime类。
cmd的xcopy就有很强大的文件夹,文件处理功能。
下面就以xcopy来说明,如何使用java调用cmd命令。
1 public static void folderCopy(String fromPath, String toPath) { 2 String strCmd = "cmd /c xcopy /Y " + fromPath + " " + toPath; 3 Runtime runtime = Runtime.getRuntime(); 4 try { 5 runtime.exec(strCmd); 6 } catch (Exception e) { 7 System.out.println("Error!"); 8 } 9 }
"cmd /c xcopy /Y " + fromPath + " " + toPath
cmd命令这里就不说明了。
标签:run ati str void 文件处理 stat xcopy sys nbsp
原文地址:https://www.cnblogs.com/danghyrz/p/9619008.html