I have a JasperReports report template (.jrxml) which is being populated by Java code. Java code is fetching data from some DB, preparing the List and passing it as parameter to report. Now the problem is that DB content could be in different languages
Ex- there is one column in DB which looks like this
PersonName
=============
"Jeff Atwood"
"Jon Skeet"
"Дарин Димитров"
"BalusC"
"VonC"
"अनुभावा"
"段故障"
So when the template is being populated the out pdf file is not showing anything for non English words.
Properties being used:
Font name = default
PdfFontname = default
PdfEncoding = default
I tried searching for the solution but most of the answers are for Report Internationalization which involves resource bundle and font family. I am just using Jaspersoft Studio 6.3.1 as eclipse plugin.
It would be great help if somebody could provide the solution or even indicate where to look for.