我正在使用docx
将PDF
文件转换为JSP
。 Libre office
未通过JSP
转换文件。但是当我通过终端或bash文件转换它时,它转换成功。请提出建议。
我的JSP
文件代码是:
Process p = Runtime.getRuntime().exec("bash fullpathtofile/file.sh pdf full fileName_to_convert myoutput directory");
我的bash文件代码是:
!/bin/bash
export HOME=/tmp
libreoffice --headless --convert-to $1 --outdir $3 $2