Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在使用 PdfBox 作为 pdf 文件编辑器应用程序的驱动程序。我需要将 pdf 文件 (PDDocument) 的 PdfBox 表示的内容作为字节数组。有谁知道如何做到这一点?
我希望现在还不算晚...
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); document.save(byteArrayOutputStream); document.close(); InputStream inputStream = new ByteArrayInputStream(byteArrayOutputStream.toByteArray());
瞧!你有两个输入流!