try {
Document document = new Document();
PdfWriter.getInstance(document, new FileOutputStream("Report.pdf"));
document.open();
document.add(new Paragraph("Hello World"));
document.close();
} catch (Exception e) {
JOptionPane.showMessageDialog(null, e);
}
This is the code i have written in NetBeans but i am getting error in first line:
error 1 in 1st line: Document is abstract; cannot be instantiated
error 2 in 2nd line cannot find symbol ,symbol: variable PdfWriter
You are clearly importing the wrong Document class, the correct import is com.itextpdf.text.Document, update your import statements and this will be fixed.
To resolve this problem, you have to copy and paste this import statement: it will work 100% import com.itextpdf.text.Document;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With