У меня есть функция, которая генерирует PDF-файл, используя библиотеку iText. Моя идея состоит в том, чтобы преобразовать документ в байтовый массив, но я всегда получаю сообщение об ошибке: 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;
}