我在iReport中格式化日期时遇到问题
在我的电脑上,我将语言环境配置为法语,但是当iReport生成报告时,我发现日期格式为英语语言环境。
这是我的jrxml文件中的一些代码:
<band height="41" splitType="Stretch">
<textField pattern="dd/MM/yyyy h.mm a">
<reportElement uuid="fb711e77-c949-4a99-9b52-109aae00c8ed" x="87" y="19" width="100" height="20"/>
<textElement/>
<textFieldExpression><![CDATA[$P{datenow}]]></textFieldExpression>
</textField>
<staticText>
<reportElement uuid="51fb76a0-829e-4c36-b474-3ff9c7d4c239" x="41" y="19" width="48" height="20"/>
<textElement>
<font isBold="true" isItalic="true"/>
</textElement>
<text><![CDATA[Fes Le : ]]></text>
</staticText>
</band>
以下是它对我的显示方式:Fri Sep 28 09:59:00
我的目标格式是vendredi 28 septembre 2012 09:59
:(法语)
你有什么主意吗?