vote up 0 vote down star

How to escape special characters in jasper reports.

example:- é, â, è, ^, @

flag

1 Answer

vote up 0 vote down

If you want to escape special XML characters like <, > you can use CDATA:

<staticText>
    <reportElement x="0" y="0" width="100" height="14"/>
    <textElement/>
        <text><![CDATA[This is a test:<                 ]]></text>
</staticText>

Special characters like é, â, è should work great if you specify the character encoding at the beginning of the jrxml file and encode the file correctly.

<?xml version="1.0" encoding="UTF-8"?>

If the exported report shows invalid characters you should check the jasper export. For instance for pdf export can find info here.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.