このサンプル テンプレートを実行すると、なぜテキストが表示されないのか、現在のところわかりません。
<?xml version="1.0"?>
<jasperReport
xmlns="http://jasperreports.sourceforge.net/jasperreports"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://jasperreports.sourceforge.net/
jasperreports http://jasperreports.
sourceforge.net/xsd/jasperreport.xsd"
name="SampleReport" pageWidth="798" pageHeight="1000">
<title>
<band height="50">
<staticText>
<reportElement x="0" y="0" width="180" height="15"/>
<textElement/>
<text>
<![CDATA[Sample Title]]>
</text>
</staticText>
</band>
</title>
<detail>
<band height="20">
<staticText>
<reportElement x="20" y="0" width="200" height="20"/>
<text>
<![CDATA[Sample Text]]>
</text>
</staticText>
</band>
</detail>
</jasperReport>
このテストをこのように実行するために、ant タスクを使用しました。
<target name="viewDesignXML"
<java classname="net.sf.jasperreports.view.JasperDesignViewer"
fork="true">
<arg value="-XML" />
<arg value="-F${file.name}.jrxml" />
<classpath refid="classpath" />
</java>
</target>
これは、Eclipse 3.6 を使用した Jasperreport 4.5 です。
ありがとう