Я пытался создать PDF-файл, используя библиотеку Itext,
это был мой метод:
private void printPDF () создает исключение FileNotFoundException, DocumentException, IOException {
OutputStream file = new FileOutputStream(new File("D:\\test.pdf"));
Document document = new Document();
PdfWriter.getInstance(document, file);
document.open();
document.add(new Paragraph("Your name is "+ l1.getText()));
document.add(new Paragraph("****************************"));
document.add(new Paragraph(" "));
document.add(new Paragraph(" "));
document.add(new Paragraph("Your surname is "+ l2.getText()));
document.add(new Paragraph("****************************"));
document.add(new Paragraph(" "));
document.add(new Paragraph(" "));
document.add(new Paragraph("Your Appointment Date is "+ l3.getText()));
document.add(new Paragraph("****************************"));
document.add(new Paragraph(" "));
document.add(new Paragraph(" "));
document.add(new Paragraph(new Date().toString()));
document.close();
file.close();
}
однако при запуске я получил несколько ошибок, связанных с io; "Не могу найти символ
import java.io.File; "/ не могу найти символ
import java.io.FileNotFoundException; / не удается найти символ
import java.io.FileOutputStream; Есть ли проблема с IO в кодовое имя один? ??
Уточните, пожалуйста!