我正在尝试使用 Java 运行 Asterisk CLI。例如
asterisk -rx "core show license"
我像这样实现Java代码
Process p = Runtime.getRuntime().exec("asterisk -rx \"core show license\"");
p.waitFor();
BufferedReader reader = new BufferedReader(new InputStreamReader(
p.getInputStream()));
String line = reader.readLine();
但我得到的是
No such command '"core' (type 'core show help core' for other possible commands)
从 Linux 控制台。
我想知道我做错了什么。
谢谢