无法从我的web应用程序执行shell命令

lbsnaicq  于 2021-06-29  发布在  Java
关注(0)|答案(0)|浏览(243)

我正在尝试从web应用程序执行shell命令。下面是单击将执行shell命令的按钮-

<td><form action="CommandStart"><input type="submit" value="START" name="edit"></form></td>

commandstart是执行shell命令的java文件。下面是命令startfile:-

public class CommandStart {
public static void main (String [] args) {
    try {
        Process process = Runtime.getRuntime().exec("ping google.com"); 

        } catch (IOException e) {
        e.printStackTrace();
    }
}

}
现在我不想展示任何东西。我只想在按下按钮时执行shell命令。但此代码在按下按钮时显示“请求的资源不可用”错误。请帮忙。ping命令稍后将被其他命令替换。

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题