windows环境,spire.pdf.free :5.1.0,jdk:1.8
PdfDocument pdf = new PdfDocument();
pdf.loadFromStream(multipartFile.getInputStream());
try (ByteArrayOutputStream outputStream = new ByteArrayOutputStream()) {
pdf.saveToStream(outputStream, FileFormat.DOCX);//使用对应的PDF进行转换时,saveToStream方法一直持有,无结果返回,导致内存溢出
} catch (Exception e) {
log.error("pdf转换word异常!" + e.getMessage(), e);
} finally {
pdf.close();
}
对应PDF文件已通过邮箱发送