我之前编写了一个执行 java 类的 bash 脚本,它在运行该类之前会进行其他检查。运行时需要参数;./SyncIPs.cmd 10.0.1.45
并执行一些命令。
我正在尝试使用 html/javascript 按钮在 jsp 页面中运行此脚本。到目前为止,我有两个jsp文件如下:
门户网站.jsp:
<%
if(request.getParameter("submitted")==null)
{
if(check)
{
%><%@include file="Sync.jsp" %><%
}
else
{
%><%@include file="Sync.jsp" %><%
}
}
%>
同步.jsp:
<%
if(request.getParameter("submit") == null)
{
%>
<div class=display>this is the Sync</div>
</div>
<br>
<form method="POST" action="/project/jsp/Portal.jsp" id=form2>
<input type=hidden name=sync>
<!---this is where I want my script to be run from,--->
<input type="button" value="" name="submit" action="run"
onClick="if(runOnSubmit()){getSomethingWithAjax
('Portal.jsp'+getAllFormElementsAndMakeIntoURI(true),
'','hereIsTheMainHeaderSpan',false,false);}">
<%
}//end if
%>
如何让该脚本运行并发布在 portal.jsp 页面上?