我正在使用qoppa'a PDFDocument加载pdf,将数据填充到其中并展平。
文档说:
Documents can be loaded from a file, an input stream or a URL. Use the URL constructor when loading a document from a web server or from a servlet.
我的问题:这三个中哪个更快,为什么?
我在本地文件夹中有pdf模板,现在我通过将输入pdf路径作为字符串传递来使用FileInputStream:
InputStream is = new FileInputStream(inputPDFRealPath);
pdfDoc = new PDFDocument(is, null);
之所以这样问,是因为我一次生成数千个文档,其中一些已损坏。我怀疑这与pdf加载或计时问题有关。我正在IBM WebSphere RAD的Web服务应用程序中使用它。