JavaからUnixコマンドを実行するのは非常に簡単です。
Runtime.getRuntime().exec(myCommand);
しかし、JavaコードからUnix Shellスクリプトを実行することは可能ですか?はいの場合、Javaコード内からシェルスクリプトを実行することをお勧めしますか?
Process Builder を実際に見る必要があります。それは本当にこの種のもののために構築されています。
ProcessBuilder pb = new ProcessBuilder("myshellScript.sh", "myArg1", "myArg2");
Map<String, String> env = pb.environment();
env.put("VAR1", "myValue");
env.remove("OTHERVAR");
env.put("VAR2", env.get("VAR1") + "suffix");
pb.directory(new File("myDir"));
Process p = pb.start();
私は、Javaからシェルスクリプトを実行することはJavaの精神ではないと言うでしょう。 Javaはクロスプラットフォームであることを意図しており、シェルスクリプトを実行すると、その使用がUNIXのみに制限されます。
つまり、Java内からシェルスクリプトを実行することは間違いなく可能です。リストしたものとまったく同じ構文を使用します(自分で試したことはありませんが、シェルスクリプトを直接実行してみてください。うまくいかない場合は、シェル自体を実行し、コマンドラインパラメーターとしてスクリプトを渡します) 。
あなたはあなた自身の質問に答えたと思います
Runtime.getRuntime().exec(myShellScript);
それが良い習慣であるかどうかについて...あなたはJavaではできないシェルスクリプトで何をしようとしていますか?
Apache Commons exec library も使用できます。
例:
package testShellScript;
import Java.io.IOException;
import org.Apache.commons.exec.CommandLine;
import org.Apache.commons.exec.DefaultExecutor;
import org.Apache.commons.exec.ExecuteException;
public class TestScript {
int iExitValue;
String sCommandString;
public void runScript(String command){
sCommandString = command;
CommandLine oCmdLine = CommandLine.parse(sCommandString);
DefaultExecutor oDefaultExecutor = new DefaultExecutor();
oDefaultExecutor.setExitValue(0);
try {
iExitValue = oDefaultExecutor.execute(oCmdLine);
} catch (ExecuteException e) {
System.err.println("Execution failed.");
e.printStackTrace();
} catch (IOException e) {
System.err.println("permission denied.");
e.printStackTrace();
}
}
public static void main(String args[]){
TestScript testScript = new TestScript();
testScript.runScript("sh /root/Desktop/testScript.sh");
}
}
さらに参照するために、 Apache Doc の例も示します。
はい、それは可能です。これでうまくいきました。
import Java.io.BufferedReader;
import Java.io.IOException;
import Java.io.InputStreamReader;
import org.omg.CORBA.portable.InputStream;
public static void readBashScript() {
try {
Process proc = Runtime.getRuntime().exec("/home/destino/workspace/JavaProject/listing.sh /"); //Whatever you want to execute
BufferedReader read = new BufferedReader(new InputStreamReader(
proc.getInputStream()));
try {
proc.waitFor();
} catch (InterruptedException e) {
System.out.println(e.getMessage());
}
while (read.ready()) {
System.out.println(read.readLine());
}
} catch (IOException e) {
System.out.println(e.getMessage());
}
}
これが私の例です。それが理にかなっていることを願っています。
public static void excuteCommand(String filePath) throws IOException{
File file = new File(filePath);
if(!file.isFile()){
throw new IllegalArgumentException("The file " + filePath + " does not exist");
}
if(this.isLinux()){
Runtime.getRuntime().exec(new String[] {"/bin/sh", "-c", filePath}, null);
}else if(this.isWindows()){
Runtime.getRuntime().exec("cmd /c start " + filePath);
}
}
public static boolean isLinux(){
String os = System.getProperty("os.name");
return os.toLowerCase().indexOf("linux") >= 0;
}
public static boolean isWindows(){
String os = System.getProperty("os.name");
return os.toLowerCase().indexOf("windows") >= 0;
}
絶対パスをハードコード化する必要を回避するために、スクリプトがルートディレクトリにある場合、スクリプトを見つけて実行する次の方法を使用できます。
public static void runScript() throws IOException, InterruptedException {
ProcessBuilder processBuilder = new ProcessBuilder("./nameOfScript.sh");
//Sets the source and destination for subprocess standard I/O to be the same as those of the current Java process.
processBuilder.inheritIO();
Process process = processBuilder.start();
int exitValue = process.waitFor();
if (exitValue != 0) {
// check for errors
new BufferedInputStream(process.getErrorStream());
throw new RuntimeException("execution of script failed!");
}
}
ZT Process Executor ライブラリは、Apache Commons Execの代替です。コマンドの実行、出力のキャプチャ、タイムアウトの設定などの機能があります。
まだ使用していませんが、十分に文書化されているようです。
ドキュメントの例:コマンドを実行し、stderrをロガーに送り、出力をUTF8文字列として返します。
String output = new ProcessExecutor().command("Java", "-version")
.redirectError(Slf4jStream.of(getClass()).asInfo())
.readOutput(true).execute()
.outputUTF8();
そのドキュメントには、Commons Execに対する次の利点がリストされています。
はい、可能であり、あなたはそれに答えました!良いプラクティスについては、直接コードからではなく、ファイルからコマンドを起動する方が良いと思います。したがって、既存の.bat、.sh、.ksh ...ファイル内のコマンドのリスト(または1つのコマンド)をJavaに実行させる必要があります。ファイル「MyFile.sh」内のコマンドのリストを実行する例を次に示します。
String[] cmd = { "sh", "MyFile.sh", "\pathOfTheFile"};
Runtime.getRuntime().exec(cmd);
JavaからUnix bashまたはWindowsのbat/cmdスクリプトを実行する方法の例を次に示します。引数をスクリプトに渡し、スクリプトから出力を受け取ることができます。このメソッドは、任意の数の引数を受け入れます。
public static void runScript(String path, String... args) {
try {
String[] cmd = new String[args.length + 1];
cmd[0] = path;
int count = 0;
for (String s : args) {
cmd[++count] = args[count - 1];
}
Process process = Runtime.getRuntime().exec(cmd);
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(process.getInputStream()));
try {
process.waitFor();
} catch (Exception ex) {
System.out.println(ex.getMessage());
}
while (bufferedReader.ready()) {
System.out.println("Received from script: " + bufferedReader.readLine());
}
} catch (Exception ex) {
System.out.println(ex.getMessage());
System.exit(1);
}
}
Unix/Linuxで実行する場合、Windowsで実行する場合、パスはUnixライク(区切り文字として「/」を使用)でなければなりません-「\」を使用します。 Hierは、任意の数の引数を受け取り、すべての引数を2倍にするbashスクリプト(test.sh)の例です。
#!/bin/bash
counter=0
while [ $# -gt 0 ]
do
echo argument $((counter +=1)): $1
echo doubling argument $((counter)): $(($1+$1))
shift
done
電話するとき
runScript("path_to_script/test.sh", "1", "2")
unix/Linuxの場合、出力は次のとおりです。
Received from script: argument 1: 1
Received from script: doubling argument 1: 2
Received from script: argument 2: 2
Received from script: doubling argument 2: 4
Hierは、入力引数の数をカウントする単純なcmd Windowsスクリプトtest.cmdです。
@echo off
set a=0
for %%x in (%*) do Set /A a+=1
echo %a% arguments received
Windowsでスクリプトを呼び出すとき
runScript("path_to_script\\test.cmd", "1", "2", "3")
出力は
Received from script: 3 arguments received
私に関しては、すべてがシンプルでなければなりません。スクリプトを実行するには、実行するだけです
new ProcessBuilder("pathToYourShellScript").start();
他のプログラムと同じように実行することもできます。スクリプトに適切な#を付けてください。 (she-bang)行をスクリプトの最初の行として入力し、ファイルに対する実行権限があることを確認します。
たとえば、bashスクリプトの場合は、スクリプトの先頭に#!/ bin/bashを配置し、chmod + xも配置します。
また、それが良いプラクティスであるかどうかについては、特にJavaについてはそうではありませんが、大きなスクリプトを移植する時間を大幅に節約でき、それを行うために余分なお金を払っていない場合;)スクリプトを作成し、Javaへの移植を長期的なToDoリストに追加します。
String scriptName = PATH+"/myScript.sh";
String commands[] = new String[]{scriptName,"myArg1", "myArg2"};
Runtime rt = Runtime.getRuntime();
Process process = null;
try{
process = rt.exec(commands);
process.waitFor();
}catch(Exception e){
e.printStackTrace();
}
これは遅い回答です。ただし、将来の開発者のために、Spring-Bootアプリケーションからシェルスクリプトを実行するために耐えなければならない苦労をかけることを考えました。
私はSpring-Bootで働いていましたが、Javaアプリケーションから実行するファイルを見つけることができず、FileNotFoundFoundException
を投げていました。ファイルをresources
ディレクトリに保持し、次のようにアプリケーションを起動している間に、ファイルをpom.xml
でスキャンするように設定する必要がありました。
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>**/*.xml</include>
<include>**/*.properties</include>
<include>**/*.sh</include>
</includes>
</resource>
</resources>
error code = 13, Permission Denied
を返していました。次に、このコマンドを実行してファイルを実行可能にする必要がありました-chmod u+x myShellScript.sh
最後に、次のコードスニペットを使用してファイルを実行できます。
public void runScript() {
ProcessBuilder pb = new ProcessBuilder("src/main/resources/myFile.sh");
try {
Process p;
p = pb.start();
} catch (IOException e) {
e.printStackTrace();
}
}
それが誰かの問題を解決することを願っています。
linux用
public static void runShell(String directory, String command, String[] args, Map<String, String> environment)
{
try
{
if(directory.trim().equals(""))
directory = "/";
String[] cmd = new String[args.length + 1];
cmd[0] = command;
int count = 1;
for(String s : args)
{
cmd[count] = s;
count++;
}
ProcessBuilder pb = new ProcessBuilder(cmd);
Map<String, String> env = pb.environment();
for(String s : environment.keySet())
env.put(s, environment.get(s));
pb.directory(new File(directory));
Process process = pb.start();
BufferedReader inputReader = new BufferedReader(new InputStreamReader(process.getInputStream()));
BufferedWriter outputReader = new BufferedWriter(new OutputStreamWriter(process.getOutputStream()));
BufferedReader errReader = new BufferedReader(new InputStreamReader(process.getErrorStream()));
int exitValue = process.waitFor();
if(exitValue != 0) // has errors
{
while(errReader.ready())
{
LogClass.log("ErrShell: " + errReader.readLine(), LogClass.LogMode.LogAll);
}
}
else
{
while(inputReader.ready())
{
LogClass.log("Shell Result : " + inputReader.readLine(), LogClass.LogMode.LogAll);
}
}
}
catch(Exception e)
{
LogClass.log("Err: RunShell, " + e.toString(), LogClass.LogMode.LogAll);
}
}
public static void runShell(String path, String command, String[] args)
{
try
{
String[] cmd = new String[args.length + 1];
if(!path.trim().isEmpty())
cmd[0] = path + "/" + command;
else
cmd[0] = command;
int count = 1;
for(String s : args)
{
cmd[count] = s;
count++;
}
Process process = Runtime.getRuntime().exec(cmd);
BufferedReader inputReader = new BufferedReader(new InputStreamReader(process.getInputStream()));
BufferedWriter outputReader = new BufferedWriter(new OutputStreamWriter(process.getOutputStream()));
BufferedReader errReader = new BufferedReader(new InputStreamReader(process.getErrorStream()));
int exitValue = process.waitFor();
if(exitValue != 0) // has errors
{
while(errReader.ready())
{
LogClass.log("ErrShell: " + errReader.readLine(), LogClass.LogMode.LogAll);
}
}
else
{
while(inputReader.ready())
{
LogClass.log("Shell Result: " + inputReader.readLine(), LogClass.LogMode.LogAll);
}
}
}
catch(Exception e)
{
LogClass.log("Err: RunShell, " + e.toString(), LogClass.LogMode.LogAll);
}
}
および使用法;
ShellAssistance.runShell("", "pg_dump", new String[]{"-U", "aliAdmin", "-f", "/home/Backup.sql", "StoresAssistanceDB"});
OR
ShellAssistance.runShell("", "pg_dump", new String[]{"-U", "aliAdmin", "-f", "/home/Backup.sql", "StoresAssistanceDB"}, new Hashmap<>());
Solaris 5.10がこの./batchstart.sh
のように動作するのと同じことですが、OSがそれを受け入れるかどうかわからないトリックがあります。代わりに\\. batchstart.sh
を使用してください。このダブルスラッシュが役立つ場合があります。
と思う
System.getProperty("os.name");
オペレーティングシステムのチェックをオンにすると、サポートされている場合はシェル/バッシュスクリプトを管理できます。コードを移植可能にする必要がある場合。