嗨有沒有辦法在linux終端通過spring執行命令?我想簡單的例子,像Java Spring MVC ExecuteCommand?
ping google.com
我使用例如從這裏http://www.mkyong.com/java/how-to-execute-shell-command-from-java/嘗試,但我不能創建對象
ExecuteShellComand obj = new ExecuteShellComand();
嗨有沒有辦法在linux終端通過spring執行命令?我想簡單的例子,像Java Spring MVC ExecuteCommand?
ping google.com
我使用例如從這裏http://www.mkyong.com/java/how-to-execute-shell-command-from-java/嘗試,但我不能創建對象
ExecuteShellComand obj = new ExecuteShellComand();
你並不真正需要的春天爲:
Runtime.getRuntime().exec("command")
會做以及。但是,當java運行在沙箱中時,這是不鼓勵的,並且您可能不會因爲(明顯的)安全原因被授予所有命令的訪問權限。
該示例中的類名稱中存在拼寫錯誤。 Java要求public
頂級類名稱與類名稱本身相匹配。
public class ExecuteShellCommand {
爲什麼你不能創建它? –