2015-06-12 50 views
0

我試圖通過運行Java代碼First.bat文件,但我得到的錯誤(警告)彈出,上面寫着我應該在哪裏放置.bat文件來運行Java代碼?

Windows無法找到First.bat。確保你輸入了正確的名字,然後再試一次。

任何人都可以告訴我它是什麼樣的錯誤,我到底在哪裏.bat文件執行?

Process batRun = Runtime.getRuntime().exec("cmd /c start First.bat"); 
+0

相關http://stackoverflow.com/questions/615948/how-do-i-run-a-batch-file-from-my- Java的應用程序 –

回答

0

正在執行cmd通過Java和默認位置CMD開始爲C:\Users\Username>。把First.batC:\Users\Username或您First.bat提供絕對路徑一樣D:\\MyFolder\\First.bat

Process batRun = Runtime.getRuntime().exec("cmd /c D:\\MyFolder\\First.bat"); 
相關問題