標籤:writer 程式 time() color log data 1.2 stream 基本
近日項目中有這樣一個需求:系統中的外幣資金調度完成以後,要將調度資訊產生一個Txt檔案,然後將這個Txt檔案發送到另外一個系統(Kondor)中。組建檔案自然使用OutputStreamWirter了,傳送檔案有兩種方式,一種是用寫個一個類似於FTP功能的程式,另外一種就是使用Java來調用Shell,在Shell中完成檔案的發送操作。我們選擇後一種,即當完成外幣資金的調度工作後,用Java的OutputStreamWriter來產生一個Txt檔案,然後用Java來調用Shell指令碼,在Shell指令碼中完成FTP檔案到Kondor系統的工作。
以下為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執行狀況的記錄檔的位置(絕對路徑)private static final String executeShellLogFile = basePath + "executeShell.log"; //傳送檔案到Kondor系統的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;//格式化日期時間,記錄日誌時使用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命令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");}} 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());} 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系統的IP地址,會將產生的檔案發送到這個地址
kondor_ip=192.168.1.200
#FTP使用者名稱
ftp_username=kondor
#FTP密碼
ftp_password=kondor
#要發送的檔案的絕對路徑
filePath=""
#要發送的檔案的檔案名稱
fileName=""
#如果Shell命令帶有參數,則將第一個參數賦給filePath,將第二個參數賦給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 "要發送的檔案是 ${filePath}/${fileName}"
cd ${filePath}
ls $fileName
if (test $? -eq 0)
then
echo "準備傳送檔案:${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` 發送了檔案 ${filePath}/${fileName}"
echo "`date +%Y-%m-%d‘ ‘%H:%M:%S` 發送了檔案 ${filePath}/${fileName}\n" >
>
$logFile
調用方法為:JavaShellUtil javaShellUtil = new JavaShellUtil();
//參數為要執行的Shell命令,即通過調用Shell指令碼sendKondorFile.sh將/temp目錄下的tmp.pdf檔案發送到192.168.1.200上
int success = javaShellUtil.executeShell("sh /tmp/sendKondorFile.sh /temp tmp.pdf");
Java 調用 Shell 命令