您好 我需要从服务器端java脚本调用shell脚本,在shell脚本中我需要连接到DB2数据库并删除几个表中的一些数据。 任何人都可以帮助我,因为我是服务器端脚本和shell脚本的新手
答案 0 :(得分:0)
Java脚本在客户端执行,
可能你需要进行ajax调用才能在服务器上执行shell脚本。
使用DWR Direct Web Remotting .call java脚本中的Java方法,并在该方法中执行shell脚本,如
rtime = Runtime.getRuntime();
Process child = rtime.exec(/bin/bash);