作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我收到类似java.io.IOException: Cannot run program cat/home/talha/* | 的异常grep -c TEXT_TO_SEARCH": error=2, No such file or directory
while executing the command below 尽管当我通过终端执行相同的命令时没有问题。我需要执行并返回以下命令的输出:
cat /home/talha/* | grep -c TEXT_TO_SEARCH
下面是使用 Runtime
类执行命令的方法:
public static String executeCommand(String command) {
StringBuffer output = new StringBuffer();
Process p;
try {
p = Runtime.getRuntime().exec(command);
p.waitFor();
BufferedReader reader = new BufferedReader(new InputStreamReader(p.getInputStream()));
String line = "";
while ((line = reader.readLine()) != null) {
output.append(line + "\n");
}
} catch (Exception e) {
e.printStackTrace();
}
return output.toString();
}
最佳答案
Runtime.exec 不使用 shell(比如 /bin/bash
);它将命令直接传递给操作系统。这意味着像 *
和管道 (|
) 这样的通配符将不会被理解,因为 cat
(像所有 Unix 命令一样)不会对那些字符。你需要使用类似的东西
p = new ProcessBuilder("bash", "-c", command).start();
或者,如果出于某些奇怪的原因您需要坚持使用过时的 Runtime.exec 方法:
p = Runtime.getRuntime().exec(new String[] { "bash", "-c", command });
如果您只运行那个 cat/grep 命令,您应该考虑放弃使用外部进程,因为 Java 代码可以轻松地遍历目录,从每个文件中读取行,并将它们与正则表达式匹配:
Pattern pattern = Pattern.compile("TEXT_TO_SEARCH");
Charset charset = Charset.defaultCharset();
long count = 0;
try (DirectoryStream<Path> dir =
Files.newDirectoryStream(Paths.get("/home/talha"))) {
for (Path file : dir) {
count += Files.lines(file, charset).filter(pattern.asPredicate()).count();
}
}
更新:要递归读取树中的所有文件,请使用 Files.walk :
try (Stream<Path> tree =
Files.walk(Paths.get("/home/talha")).filter(Files::isReadable)) {
Iterator<Path> i = tree.iterator();
while (i.hasNext()) {
Path file = i.next();
try (Stream<String> lines = Files.lines(file, charset)) {
count += lines.filter(pattern.asPredicate()).count();
}
};
}
关于java.lang.运行时异常 "Cannot run program",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44500899/
我是一名优秀的程序员,十分优秀!