0

我之前编写了一个执行 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 页面上?

4

2 回答 2

3

你必须在你的 .jsp 中加入一些 java 代码

try {
  Process p = Runtime.getRuntime().exec("/path_to_your_script/SyncIPs.cmd 10.0.1.45");
  p.waitFor();
  System.out.println("exit code: " + p.exitValue());
} catch (Exception e) {
  System.out.println(e.getMessage());
} 

注意:注意可能的安全问题

于 2012-10-02T22:40:58.817 回答
0

使用Runtime.getRuntime().exec()可能是您需要的。

高温高压

于 2012-10-02T22:31:38.543 回答