Hi,
I designed a report with iReport 1.2.6. 
The report connect to an Oracle database and display arabic data.
I compiled the report and i obtained a jrxml file.
In my java application i wrote the following code:

Connection connection = CreateConnexion();
JasperDesign jasperDesign = JRXmlLoader.load("c:\\report.jrxml");
JasperReport jasperReport =
JasperCompileManager.compileReport(jasperDesign);
                        
Map parameters = new HashMap();
parameters.put("Title", "Title");

JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport,
parameters, connection);
                        
JasperExportManager.exportReportToPdfFile("c:\\report.pdf");

I obtained a pdf file named report.pdf. 
When i open the pdf file, i find that the arabic data is not displayed
correctly.
The arabic letters are layered.
How can i use iText to resolve the problem ?
Thanks.
-- 
View this message in context: 
http://www.nabble.com/problem-with-arabic-tf2349211.html#a6541711
Sent from the iText - General mailing list archive at Nabble.com.


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
iText-questions mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/itext-questions

Reply via email to