欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Java調(diào)用Shell命令的方法

 更新時(shí)間:2015年07月23日 17:52:59   作者:fzhlee  
這篇文章主要介紹了Java調(diào)用Shell命令的方法,實(shí)例分析了java調(diào)用shell命令的相關(guān)技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下

本文實(shí)例講述了Java調(diào)用Shell命令的方法。分享給大家供大家參考。具體如下:

近日項(xiàng)目中有這樣一個(gè)需求:系統(tǒng)中的外幣資金調(diào)度完成以后,要將調(diào)度信息生成一個(gè)Txt文件,然后將這個(gè)Txt文件發(fā)送到另外一個(gè)系統(tǒng)(Kondor)中。生成文件自然使用OutputStreamWirter了,發(fā)送文件有兩種方式,一種是用寫個(gè)一個(gè)類似于FTP功能的程序,另外一種就是使用Java來調(diào)用Shell,在Shell中完成文件的發(fā)送操作。我們選擇后一種,即當(dāng)完成外幣資金的調(diào)度工作后,用Java的OutputStreamWriter來生成一個(gè)Txt文件,然后用Java來調(diào)用Shell腳本,在Shell腳本中完成FTP文件到Kondor系統(tǒng)的工作。

以下為Java程序JavaShellUtil.java:

import java.io.BufferedReader;
import java.io.File;
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 = "/tmp/";
//記錄Shell執(zhí)行狀況的日志文件的位置(絕對路徑)
private static final String executeShellLogFile = basePath + "executeShell.log";
//發(fā)送文件到Kondor系統(tǒng)的Shell的文件名(絕對路徑)
private static final String sendKondorShellName = basePath + "sendKondorFile.sh";
public int executeShell(String shellCommand) throws IOException {
int success = 0;
StringBuffer stringBuffer = new StringBuffer();
BufferedReader bufferedReader = null;
//格式化日期時(shí)間,記錄日志時(shí)使用
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:SS ");
try {
stringBuffer.append(dateFormat.format(new Date())).append("準(zhǔn)備執(zhí)行Shell命令 ").append(shellCommand).append(" /r/n");
Process pid = null;
String[] cmd = {"/bin/sh", "-c", shellCommand};
//執(zhí)行Shell命令
pid = Runtime.getRuntime().exec(cmd);
if (pid != null) {
stringBuffer.append("進(jìn)程號(hào):").append(pid.toString()).append("/r/n");
//bufferedReader用于讀取Shell的輸出內(nèi)容 bufferedReader = new BufferedReader(new InputStreamReader(pid.getInputStream()), 1024);
pid.waitFor();
} else {
stringBuffer.append("沒有pid/r/n");
}
stringBuffer.append(dateFormat.format(new Date())).append("Shell命令執(zhí)行完畢/r/n執(zhí)行結(jié)果為:/r/n");
String line = null;
//讀取Shell的輸出內(nèi)容,并添加到stringBuffer中
while (bufferedReader != null &
&
(line = bufferedReader.readLine()) != null) {
stringBuffer.append(line).append("/r/n");
}
} catch (Exception ioe) {
stringBuffer.append("執(zhí)行Shell命令時(shí)發(fā)生異常:/r/n").append(ioe.getMessage()).append("/r/n");
} finally {
if (bufferedReader != null) {
OutputStreamWriter outputStreamWriter = null;
try {
bufferedReader.close();
//將Shell的執(zhí)行情況輸出到日志文件中
OutputStream outputStream = new FileOutputStream(executeShellLogFile);
outputStreamWriter = new OutputStreamWriter(outputStream, "UTF-8");
outputStreamWriter.write(stringBuffer.toString());
} catch (Exception e) {
e.printStackTrace();
} finally {
outputStreamWriter.close();
}
}
success = 1;
}
return success;
}
}

以下是Shell腳本sendKondorFile.sh,該Shell腳本的作用是FTP文件到指定的位置:

#!/bin/sh
#日志文件的位置
logFile="/opt/fms2_kondor/sendKondorFile.log"
#Kondor系統(tǒng)的IP地址,會(huì)將生成的文件發(fā)送到這個(gè)地址
kondor_ip=192.168.1.200
#FTP用戶名
ftp_username=kondor
#FTP密碼
ftp_password=kondor
#要發(fā)送的文件的絕對路徑
filePath=""
#要發(fā)送的文件的文件名
fileName=""
#如果Shell命令帶有參數(shù),則將第一個(gè)參數(shù)賦給filePath,將第二個(gè)參數(shù)賦給fileName
if [ $# -ge "1" ]
then
filePath=$1
else
echo "沒有文件路徑"
echo "沒有文件路徑/n" >
>
$logFile
return
fi
if [ $# -ge "2" ]
then
fileName=$2
else
echo "沒有文件名"
echo "沒有文件名/n" >
>
$logFile
return
fi
echo "要發(fā)送的文件是 ${filePath}/${fileName}"
cd ${filePath}
ls $fileName
if (test $? -eq 0)
then
echo "準(zhǔn)備發(fā)送文件:${filePath}/${fileName}"
else
echo "文件 ${filePath}/${fileName} 不存在"
echo "文件 ${filePath}/${fileName} 不存在/n" >
>
$logFile
return
fi
ftp -n ${kondor_ip} <
<
_end
user ${ftp_username} ${ftp_password}
asc
prompt
put $fileName
bye
_end
echo "`date +%Y-%m-%d' '%H:%M:%S` 發(fā)送了文件 ${filePath}/${fileName}"
echo "`date +%Y-%m-%d' '%H:%M:%S` 發(fā)送了文件 ${filePath}/${fileName}/n" >
>
$logFile

調(diào)用方法為:

JavaShellUtil javaShellUtil = new JavaShellUtil();
//參數(shù)為要執(zhí)行的Shell命令,即通過調(diào)用Shell腳本sendKondorFile.sh將/temp目錄下的tmp.pdf文件發(fā)送到192.168.1.200上
int success = javaShellUtil.executeShell("sh /tmp/sendKondorFile.sh /temp tmp.pdf");

希望本文所述對大家的java程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評(píng)論