本文介紹了如何構建可執行JAR以將字符串返回到外殼腳本的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我必須從外殼腳本運行可執行JAR文件才能獲得字符串值。可執行JAR不能返回值,因為Main返回空。我無法使用System.exit(Int),因為JAR必須返回字符串類型的值。
請提出建議。
推薦答案
此數據應寫入標準輸出(在JAVA中為System.out
),并使用$(command expansion)
捕獲。
以下是所有優秀的Unix公民(以及太少的Java程序)應該確保做的事情:
將程序結果寫入標準輸出(System.out)
將錯誤消息和調試寫入stderr(System.err)
使用System.exit(0)
表示成功(如果未使用System.exit,這也是默認設置)
使用System.exit(1)
(或更高,最多255)表示失敗
這里有一個完整的示例來演示Java和外殼腳本之間的相互作用:
$ cat Foo.java
class Foo {
public static void main(String[] args) {
System.out.println("This data should be captured");
System.err.println("This is other unrelated data.");
System.exit(0);
}
}
一個非常基本的清單:
$ cat manifest
Main-Class: Foo
一個簡單的外殼腳本:
#!/bin/sh
if var=$(java -jar foo.jar)
then
echo "The program exited with success."
echo "Here's what it said: $var"
else
echo "The program failed with System.exit($?)"
echo "Look at the errors above. The failing output was: $var"
fi
現在讓我們編譯和構建JAR,并使腳本可執行:
$ javac Foo.java
$ jar cfm foo.jar manifest Foo.class
$ chmod +x myscript
現在運行它:
$ ./myscript
This is other unrelated data.
The program exited with success.
Here's what it said: This data should be captured
這篇關于如何構建可執行JAR以將字符串返回到外殼腳本的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,