2

我在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:(法语

你有什么主意吗?

4

1 回答 1

3

您的问题重复了如何在 iReport 中更改日期格式(月份名称)?在 IReport 中设置 REPORT_LOCALE?帖子。


  • 要在iReport中设置区域设置,您应该调用对话框选项 - 编译和执行(通过iReport ->工具->选项菜单)。

语言设置对话框

对于这个textField

<textField pattern="EEEEE dd MMMMM yyyy">
    <reportElement x="0" y="0" width="100" height="20"/>
    <textElement/>
    <textFieldExpression><![CDATA[$F{date}]]></textFieldExpression>
</textField>

结果将是:

通过 iReport 中的预览获得结果

注意:它仅适用于iReport中的预览。

Map<String, Object> params = new HashMap<String, Object>(); 
params.put(JRParameter.REPORT_LOCALE, Locale.FRENCH); 
JasperFillManager.fillReportToFile(compiledReportName, params); 

对于使用这样的代码生成的报告,结果将是相同的。


工作示例jrxml文件:

<?xml version="1.0" encoding="UTF-8"?>
<jasperReport ...  whenNoDataType="AllSectionsNoDetail" ...>
    <parameter name="date" class="java.util.Date" isForPrompting="false">
        <defaultValueExpression><![CDATA[new Date()]]></defaultValueExpression>
    </parameter>
    <title>
        <band height="50">
            <textField pattern="EEEEE dd MMMMM yyyy">
                <reportElement x="200" y="11" width="228" height="20"/>
                <textElement/>
                <textFieldExpression><![CDATA[$P{date}]]></textFieldExpression>
            </textField>
        </band>
    </title>
</jasperReport>

Java代码:

Map<String, Object> params = new HashMap<String, Object>();
params.put("date", new Date());
params.put(JRParameter.REPORT_LOCALE, Locale.FRENCH);

JasperReport jasperReport = JasperCompileManager.compileReport(reportSource);
JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport, params, connection);

JasperExportManager.exportReportToPdfFile(jasperPrint, outputFile);

结果是:

Adobe Reader 中生成的报告

于 2012-09-28T10:16:57.750 回答