I am using JasperReport version 6.2
And I want to export report to PDF, but my report will not support languages different then English (other languages fields appear as blank),
This is my code for generating the report
JsonDataSource ds = new JsonDataSource(JRLoader.getInputStream(jsonFile));
JasperReport jasperReport = (JasperReport) JRLoader.loadObject(jasperFile);
parameters.put(JRParameter.REPORT_FILE_RESOLVER, new SimpleFileResolver(new File(reportDirPath)));
JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport, parameters, ds);
JasperExportManager.exportReportToPdfFile(jasperPrint, outputFilePath);
I created a Font Extension using this tutorial: "http://community.jaspersoft.com/wiki/custom-font-font-extension"
I export to jar file and add to my project class path, but all fields that are not in English are Still blank
peter comment with this link was very helpful, it help me realize if my font is supporting the desire language in the first place