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

私は使用してきました。「&」の代わりにジャスパーレポートで動作しています。

<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 のプレビュー


詳細については、Creating Styled Text Using a Markup Language の投稿と、 JasperReports の質問のテキスト フィールドのスタイルに関する私の回答をご覧ください。

于 2012-10-23T07:34:04.913 に答える