我正在尝试使用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时我没有问题,所以我不确定这里出了什么问题。