如何在java中运行shell脚本.sh文件

问题描述 投票:-4回答:1

目的

我写了一个简单的java程序,我想重命名一个文件,然后我想运行我的permission.sh文件。

问题陈述

发生的事情是我的文件名成功更改但是没有执行permission.sh文件。坚持需要帮助!

以下是我的代码。

package nl.ggmd.file.Permission;

import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;

import org.apache.synapse.MessageContext;
import org.apache.synapse.mediators.AbstractMediator;

public class FilePermission extends AbstractMediator
{

  public boolean mediate(MessageContext context) { 
      try {
      File oldfile =new File("/ggmd/files/uploads/FIle contract1.csv");
        File newfile =new File("/ggmd/files/uploads/contract1.csv");

        if(oldfile.renameTo(newfile)){
            System.out.println("Rename succesful");
        }else{
            System.out.println("Rename failed");
        }


          Process proc = Runtime.getRuntime().exec("/opt/file/contracts/tst/permissions.sh"); 
          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());
      }


    return true;
  }
}

编辑

这个java代码是WSO2 ESB的自定义类中介,而wso2没有显示java mediator的日志,因此我无法调试该问题。

以下是我的permission.sh代码。

#!/bin/bash
cd /ggmd/files/uploads/
file=contract1.csv

if [ ! -a $file ]
then
  sudo chmod 664 $file && echo "The file is now writable"
else
  echo "The file is already writable"
fi
java linux wso2 sh wso2esb
1个回答
0
投票

建议使用Process Builder。它真的是为这种任务而构建的。

您的程序permisions.sh不是Java可以理解的,即使操作系统将其理解为可执行文件。

您需要通知Java执行命令需要bash shell(或其他一些shell)。例如。 / bin / bash是可以运行或执行脚本的程序的路径。有了这个说你跟着这个代码片段来解决这个问题。

public class FilePermission extends AbstractMediator
{

  public boolean mediate(MessageContext context) { 
      try {
      File oldfile =new File("/ggmd/files/uploads/FIle contract1.csv");
        File newfile =new File("/ggmd/files/uploads/contract1.csv");

        if(oldfile.renameTo(newfile)){
            System.out.println("Rename succesful");
        }else{
            System.out.println("Rename failed");
        }

private final String commandPath = "/bin/bash";

private final String scriptPath = "/opt/file/contracts/tst/permissions.sh";


try {
        Process execCommand = new ProcessBuilder(commandPath, scriptPath).start();
        execCommand.waitFor();
    } catch (IOException e) {
        // handle exceptions
        System.out.println(e.getMessage());
    } catch (InterruptedException e) {
        System.out.println(e.getMessage());
    }


    return true;
  }
}

请注意,上述代码可能需要进行一些修改,尤其是当您的脚本(permissions.sh)可能依赖于当前工作目录时。上面正在使用java代码的工作目录。

但可以通过在进程对象上调用directory(File directory)方法来更改。然后将新的工作目录路径传递给它。在这种情况下

Process execCommand = new ProcessBuilder(commandPath, scriptPath).directory(new File("/some/directory/to/be/used/")).start();

您也可以在需要时拨打execCommand.getErrorStream();execCommand.getInputStream();

© www.soinside.com 2019 - 2024. All rights reserved.