繁体   English   中英

如何使用spring boot将生成的PDF文件保存到MySQL db?

[英]How to save generated PDF files to MySQL db using spring boot?

我有一个使用 iText 库生成 PDF 文件的功能。 我的想法是将文档转换为字节数组,但我总是收到一个错误: com.itextpdf.text.Document@2805d0d4. The file cannot be found com.itextpdf.text.Document@2805d0d4. The file cannot be found

这是我的 PDF 生成功能:

    @Override
    public Boolean createdPDF() throws Exception {
        Document document = new Document();
        PdfWriter.getInstance(document, new FileOutputStream("iTextHelloWorld.pdf"));

        document.open();
        Font font = FontFactory.getFont(FontFactory.COURIER, 16, BaseColor.BLACK);
        Chunk chunk = new Chunk("Hello World", font);

        document.add(chunk);
        document.close();
        getByteArrayFromFile(document);

        return true;
    }

这是我从文件函数转换字节数组:

    private byte[] getByteArrayFromFile(Document handledDocument) throws IOException {
         ByteArrayOutputStream baos = new ByteArrayOutputStream();
         InputStream in = new FileInputStream(String.valueOf(handledDocument));
         byte[] buffer = new byte[500];

        int read = -1;
        while ((read = in.read(buffer)) > 0) {
            baos.write(buffer, 0, read);
        }
        in.close();

        Ticket newTicket = new Ticket();
        newTicket.setFileName("example");
        newTicket.setData(baos.toByteArray());
        ticketRepository.save(newTicket);

        return baos.toByteArray();
    }

票务实体:

    @Data
    @Entity
    public class Ticket {

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long id;

    private String fileName;

    @Lob
    private byte[] data;

    @NotNull
    @JsonIgnore
    @Column(updatable = false)
    private LocalDateTime createAt;

    @NotNull
    @JsonIgnore
    private LocalDateTime updatedAt;
}

以下是如何从 PdfDocument 获取 byte[] 的示例:

ByteArrayOutputStream baos = new ByteArrayOutputStream();
Documentdocument = new Document();

PdfWriter pdfWriter = PdfWriter.getInstance(document, baos);

document.open();
Font font = FontFactory.getFont(FontFactory.COURIER, 16, BaseColor.BLACK);
Chunk chunk = new Chunk("Hello World", font);

document.add(chunk);
document.close(); 

pdfWriter.flush();

byte[] pdfAsBytes = baos.toByteArray();

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM