3

JasperReports中工作:

<style pdfFontName="Helvetica-BoldOblique" isBold="true" isItalic="true" 
forecolor="red">Instruction and instruction</style>

不在JasperReports中工作:

<style pdfFontName="Helvetica-BoldOblique" isBold="true" isItalic="true"
forecolor="red">Instruction & instruction</style>

为什么会这样?

4

2 回答 2

2

我用过 &amp; 而不是“&”,它在碧玉报告中工作。

<style pdfFontName="Helvetica-BoldOblique" isBold="true" isItalic="true"
forecolor="red">Instruction &amp;amp; instruction</style>

//在文本文件中我使用了样式标签。

<textField isStretchWithOverflow="true" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None"  hyperlinkTarget="Self" >
                <reportElement
                    x="0"
                    y="0"
                    width="290"
                    height="15"
                    key="textField"
                    isRemoveLineWhenBlank="true"/>
                <box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" rightPadding="5" bottomBorder="None" bottomBorderColor="#000000"/>
                <textElement textAlignment="Center" isStyledText="true">
                    <font size="9"/>
                </textElement>
            <textFieldExpression   class="java.lang.String"><![CDATA[<style pdfFontName="Helvetica-BoldOblique" isBold="true" isItalic="true"
forecolor="red">Instruction &amp;amp; instruction</style>]]></textFieldExpression>
            </textField>
于 2013-09-24T10:43:18.830 回答
1

尝试使用&amp;而不是使用&符号。

工作样本:

<?xml version="1.0" encoding="UTF-8"?>
<jasperReport ... whenNoDataType="AllSectionsNoDetail">
    <style name="style1" forecolor="#FF0000" fontName="Serif" isBold="true" isItalic="true"/>
    <title>
        <band height="182" splitType="Stretch">
            <staticText>
                <reportElement style="style1" x="27" y="15" width="515" height="20"/>
                <textElement/>
                <text><![CDATA[Instruction and instruction]]></text>
            </staticText>
            <staticText>
                <reportElement style="style1" x="27" y="46" width="515" height="20"/>
                <textElement/>
                <text><![CDATA[Instruction & instruction]]></text>
            </staticText>
            <staticText>
                <reportElement x="27" y="78" width="515" height="20"/>
                <textElement markup="styled"/>
                <text><![CDATA[<style isBold='true'>Instruction and instruction</style>]]></text>
            </staticText>
            <staticText>
                <reportElement x="27" y="108" width="515" height="20"/>
                <textElement markup="styled"/>
                <text><![CDATA[<style isBold='true'>Instruction &amp; instruction</style>]]></text>
            </staticText>
        </band>
    </title>
</jasperReport>

注意:此示例中使用了样式标记

结果将是:

iReport 中的预览


有关更多详细信息,您可以查看使用标记语言创建样式化文本帖子和我在 JasperReports问题中设置文本字段样式的答案。

于 2012-10-23T07:34:04.913 回答