如何从java代码运行sed命令

时间:2015-02-19 15:23:16

标签: java bash

我可能遗漏了一些东西,但我正在尝试从java运行命令行

代码如下:

String command = "sed -i 's/\\^@\\^/\\|/g' /tmp/part-00000-00000";
ProcessBuilder pb = new ProcessBuilder(command);
pb.redirectErrorStream(true);
Process process = pb.start();
process.waitFor();
if (process.exitValue() > 0) {
    String output = // get output form command
    throw new Exception(output);
}

我收到以下错误:

 java.lang.Exception: Cannot run program "sed  -i 's/\^@\^/\|/g' /tmp/part-00000-00000": error=2, No such file or directory

fils存在。我正在这个文件上做它并且它存在。 我只是想找到一种方法让它从java开始工作。我做错了什么?

4 个答案:

答案 0 :(得分:6)

将命令作为数组传递,而不是字符串:

String[] command={"sed", "-i", "'s/\\^@\\^/\\|/g'", "/tmp/part-00000-00000"};

请参阅ProcessBuilder文档。

答案 1 :(得分:4)

老实说,在这种情况下,无需外部执行sed。用Java读取文件并使用Pattern。然后,您拥有可以在任何平台上运行的代码。将其与org.apache.commons.io.FileUtils结合使用,您可以在几行代码中完成。

    final File = new File("/tmp/part-00000-00000");    
    String contents = FileUtils.readFileToString(file, StandardCharsets.UTF_8.name());
    contents = Pattern.compile("\\^@\\^/\\").matcher(contents).replaceAll("|");
    FileUtils.write(file, contents);

或者,在一个简短的,自足的,正确的例子中

import org.apache.commons.io.FileUtils;

import java.io.File;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.util.regex.Pattern;

    public final class SedUtil {

        public static void main(String... args) throws Exception {
            final File file = new File("part-00000-00000");
            final String data = "trombone ^@^ shorty";
            FileUtils.write(file, data);
            sed(file, Pattern.compile("\\^@\\^"), "|");
            System.out.println(data);
            System.out.println(FileUtils.readFileToString(file, StandardCharsets.UTF_8));
        }

        public static void sed(File file, Pattern regex, String value) throws IOException {
            String contents = FileUtils.readFileToString(file, StandardCharsets.UTF_8.name());
            contents = regex.matcher(contents).replaceAll(value);
            FileUtils.write(file, contents);
        }
    }

给出输出

trombone ^@^ shorty
trombone | shorty

答案 2 :(得分:0)

此代码非常神奇,简单,简短,并且经过了100%的测试 例如我想从文件(/sdcard/MT2/file.json)中删除行的最后一个字符

String[] cmdline = { "sh", "-c", "sed -i 's/.$//' /sdcard/MT2/file.json " }; 
try {
  Runtime.getRuntime().exec(cmdline);
} catch (Exception s) {
  finishAffinity();
}

此魔术代码不仅运行sed,而且还运行runnig echo,cat,.... ect 祝你好运

答案 3 :(得分:-1)

尝试

Process p = Runtime.getRuntime().exec("sed -i 's/\\^@\\^/\\|/g' /tmp/part-00000-00000");