怎样在web项目中通过程序控制shell脚本执行并且向shell脚本中传进参数,实现两个服务器上的文件同步?

怎样在web项目中通过程序控制shell脚本执行并且向shell脚本中传进参数,实现两个服务器上的文件同步?,第1张

java是可以执行shell脚本的,如下:

//command就是你在linux上执行脚本的字符串命令

StringBuffer command = new StringBuffer();
commandappend(SHELL)append(BLANK);
commandappend(CREATEUSER_SH)append(BLANK);
commandappend(fsigetFtpIp())append(BLANK);
commandappend(fsigetRootPasswd())append(BLANK);
commandappend(fsigetFixHomePath() + ftpInfogetHomePath())append(BLANK);
commandappend(ftpInfogetFtpUser())append(BLANK);
commandappend(ftpInfogetFtpPasswd())append(BLANK);
commandappend(ftpInfogetFlag());
// 进程p执行脚本
p = RuntimegetRuntime()exec(commandtoString());


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/10640291.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-10
下一篇 2023-05-10

发表评论

登录后才能评论

评论列表(0条)

保存