无法运行程序“pandoc”:error = 2,没有这样的文件或目录

时间:2016-06-01 23:26:14

标签: runtime exec processing pandoc

我正在尝试使用Pandoc使用以下方法从Processing sketch中的.md文件创建PDF:

    String[] command = {"pandoc", "-s", "-o", PDFname, "newFileName"};
    Runtime rt = Runtime.getRuntime();
    Process p = rt.exec(command);

(其中PDFname是一个字符串),但我收到以下错误:

java.io.IOException: Cannot run program "pandoc": error=2, No such file or directory

当我从终端运行pandoc时我没有问题,所以我不确定这里出了什么问题。

0 个答案:

没有答案