How to decode html objects in JasperReports

I have several reports written in JasperReports and they display html objects literally, for example, a point marker โ€ข is displayed using a textual representation of the html entity: # 8226 ;.

Do you know anything like that?

+3
source share
3 answers

In textField set markup attribute as html .

+4
source

If you use iReport to design reports, check the "markup" property in the properties window for this specific field.

+2
source

Because reports are XML layouts, they can be easily converted to UTF-8, since 8226 is a Unicode number.

0
source

All Articles