java调用shell命令

java调用shell命令

ID:34723890

大小:102.18 KB

页数:5页

时间:2019-03-10

java调用shell命令_第1页
java调用shell命令_第2页
java调用shell命令_第3页
java调用shell命令_第4页
java调用shell命令_第5页
资源描述:

《java调用shell命令》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库

1、Java代码  1.import java.io.BufferedReader;  2.import java.io.File;  3.import java.io.FileOutputStream;  4.import java.io.IOException;  5.import java.io.InputStreamReader;  6.import java.io.OutputStream;  7.import java.io.OutputStreamWriter;  8.import java.text.DateFormat;  9.import java.text.S

2、impleDateFormat;  10.import java.util.Date;  11.  12.public class JavaShellUtil {  13.//基本路径  14.private static final String basePath = "/tmp/";  15.  16.//记录Shell执行状况的日志文件的位置(绝对路径)  17.private static final String executeShellLogFile = basePath + "executeShell.log";  18.  19.//发送文件到Kondor系统的

3、Shell的文件名(绝对路径)  20.private static final String sendKondorShellName = basePath + "sendKondorFile.sh";  21.http://fb-on.com 22.public int executeShell(String shellCommand) throws IOException {  23.int success = 0;  24.StringBuffer stringBuffer = new StringBuffer();  25.BufferedReader buffered

4、Reader = null;  26.//格式化日期时间,记录日志时使用  27.DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:SS ");  28.  29.try {  30.stringBuffer.append(dateFormat.format(new Date())).append("准备执行Shell命令 ").append(shellCommand).append(" r");  31.  32.Process pid = null;  33.String[] cmd = {"

5、/bin/sh", "-c", shellCommand};  34.//执行Shell命令  35.pid = Runtime.getRuntime().exec(cmd);  36.if (pid != null) {  37.stringBuffer.append("进程号:").append(pid.toString()).append("r");  1.//bufferedReader用于读取Shell的输出内容 bufferedReader = new BufferedReader(new InputStreamReader(pid.getInputStrea

6、m()), 1024);  2.pid.waitFor();  3.} else {  4.stringBuffer.append("没有pidr");  5.}  6.stringBuffer.append(dateFormat.format(new Date())).append("Shell命令执行完毕r执行结果为:r");  7.String line = null;  8.//读取Shell的输出内容,并添加到stringBuffer中  9.while (bufferedReader != null &  10.&  11.(line = buff

7、eredReader.readLine()) != null) {  12.stringBuffer.append(line).append("r");  13.}  14.} catch (Exception ioe) {  15.stringBuffer.append("执行Shell命令时发生异常:r").append(ioe.getMessage()).append("r");  16.} finally {  17.if (bufferedReader != nu

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。