java 反射执行shell_java调用linux中的shell脚本传递参数并返回执行结果

package cn.com.songjy.test.shell;

import java.io.BufferedReader;

import java.io.FileOutputStream;

import java.io.IOException;

import java.io.InputStreamReader;

import java.io.OutputStream;

import java.io.OutputStreamWriter;

import java.text.DateFormat;

import java.text.SimpleDateFormat;

import java.util.Date;

public class JavaShellUtil {

// 基本路径

private static final String basePath = "/root/";

// 记录Shell执行状况的日志文件的位置(绝对路径)

private static final String executeShellLogFile = basePath

+ "executeShell.log";

// 发送文件到Kondor系统的Shell的文件名(绝对路径)

private static final String sendKondorShellName = basePath

+ "songjy.sh";

public int executeShell(String shellCommand) throws IOException {

System.out.println("shellCommand:"+shellCommand);

int success = 0;

StringBuffer stringBuffer = new StringBuffer();

BufferedReader bufferedReader = null;

// 格式化日期时间,记录日志时使用

DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:SS ");

try {

stringBuffer.append(dateFormat.format(new Date()))

.append("准备执行Shell命令 ").append(shellCommand)

.append(" \r\n");

Process pid = null;

String[] cmd = { "/bin/sh", "-c", shellCommand };

//给shell传递参数

//String[] cmd = { "/bin/sh", "-c", shellCommand+" paramater" };

// 执行Shell命令

pid = Runtime.getRuntime().exec(cmd);

if (pid != null) {

stringBuffer.append("进程号:").append(pid.toString())

.append("\r\n");

// bufferedReader用于读取Shell的输出内容

bufferedReader = new BufferedReader(new InputStreamReader(pid.getInputStream()), 1024);

pid.waitFor();

} else {

stringBuffer.append("没有pid\r\n");

}

stringBuffer.append(dateFormat.format(new Date())).append(

"Shell命令执行完毕\r\n执行结果为:\r\n");

String line = null;

// 读取Shell的输出内容,并添加到stringBuffer中

while (bufferedReader != null

&& (line = bufferedReader.readLine()) != null) {

stringBuffer.append(line).append("\r\n");

}

System.out.println("stringBuffer:"+stringBuffer);

} catch (Exception ioe) {

stringBuffer.append("执行Shell命令时发生异常:\r\n").append(ioe.getMessage())

.append("\r\n");

} finally {

if (bufferedReader != null) {

OutputStreamWriter outputStreamWriter = null;

try {

bufferedReader.close();

// 将Shell的执行情况输出到日志文件中

OutputStream outputStream = new FileOutputStream(executeShellLogFile);

outputStreamWriter = new OutputStreamWriter(outputStream, "UTF-8");

outputStreamWriter.write(stringBuffer.toString());

System.out.println("stringBuffer.toString():"+stringBuffer.toString());

} catch (Exception e) {

e.printStackTrace();

} finally {

outputStreamWriter.close();

}

}

success = 1;

}

return success;

}

public static void main(String[] args) {

try {

new JavaShellUtil().executeShell(sendKondorShellName);

} catch (IOException e) {

e.printStackTrace();

}

}

}

执行sh的内容如下:

#!/bin/sh

name=$1

echo "the ${name} are great man!"

给新创建的test.sh的脚本赋可执行权限,命令为“chmod 755 test.sh”。

执行'./test.sh "xiao wang"'命令,可以看到自己编写脚本的结果“the xiao wang are great man!”。

"name=$1"中$1为系统提供的位置参数,$0代表程序的名称,[$1/$2/...]从1开始为传递的参数。

linux系统除了提供位置参数还提供内置参数,内置参数如下:

$# ----传递给程序的总的参数数目

$? ----上一个代码或者shell程序在shell中退出的情况,如果正常退出则返回0,反之为非0值。

$* ----传递给程序的所有参数组成的字符串。

$n ----表示第几个参数,$1 表示第一个参数,$2 表示第二个参数 ...   $0 ----当前程序的名称

$@----以"参数1" "参数2" ... 形式保存所有参数

$$ ----本程序的(进程ID号)PID

$! ----上一个命令的PID

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值