所以我总结了我的问题。我想在使用 java 时将 xls 文件转换为 PDF。. 我找到了两个例子
第一个是使用 Openoffice
import officetools.OfficeFile; // from officetools.jar
FileInputStream fis = new FileInputStream(new File("test.doc"));
FileOutputStream fos = new FileOutputStream(new File("test.pdf"));
OfficeFile f = new OfficeFile(fis,"localhost","8100", false);
f.convert(fos,"pdf");
但不幸的是我必须安装它:(
我也找到了这个例子,两个带有 vb 的命令行(调用 pdf 创建者)
DoCmd.OpenReport "repClient", acViewPreview, "NumClient = 2"
DoCmd.OutputTo acOutputReport, "PDF", "d: \ test.pdf"
java上有没有类似的东西!!!!(注意我用于我的第一个解决方案(jxl,appach poi),但生成的 pdf 格式与我使用 Microsoft Excel 保存为 PDF 时不同)
提前想你