//pdfFile = pdfFile.replaceAll(" ", "").replaceAll(" ", "");
org.jeecgframework.core.util.LogUtil.info("进行文档转换转换:" + inputFile + " --> " + pdfFile);
OfficeDocumentConverter converter = new OfficeDocumentConverter(
officeManager);
try {
converter.convert(new File(inputFile), new File(pdfFile));
} catch (Exception e) {
// TODO: handle exception
org.jeecgframework.core.util.LogUtil.info(e.getMessage());
}