public void createPDF( String path ) {
// Met deze functie wordt er een PDF aangemaakt van de huidige factuur
try {
Document document = new Document();
PdfWriter.getInstance(document, new FileOutputStream(path + ".pdf"));
document.open();
document.add(new Paragraph("Factuurid = " + Integer.toString(this.id)));
document.close();
} catch (Exception e) {
System.out.println(e);
}
}///this shows errors
问问题
265 次