How to create a PDF document from languages of Unicode char set regarding using third party Fonts
I'm using PDFBox and iText to create a simple (just paragraphs) pdf document from various languages. Something like : pdfBox : private static void createPdfBoxDocument(File from, File to) { PDDocument document = null; try { document = new TextToPDF().createPDFFromText(new FileReader(from)); document.save(new FileOutputStream(to)); } finally { if (document != null) document.close(); } } private void createPdfBoxDoc() throws IOException, FileNotFoundException, COSVisitorException { PDDocument document = new PDDocument(); PDPage page = new PDPage(); document.addPage(page); PDPageContentStream