Jasperreport 编码 PDF

发布于 2024-12-10 20:20:38 字数 244 浏览 1 评论 0原文

我在 Struts 2 中使用 Jasper Report 4.1.1 Maven 插件时遇到问题。

我导出越南语报告 RTF 格式没问题,但是当 PDF 格式的报告字体错误时,我无法显示越南语。

我尝试了很多不同的方法来添加文件 font.jar jasperreport.property 类路径或使用最简单的方法是添加 XML 标记:encoding = UTF-8 但它不解决问题。

I having a problem with Jasper Report 4.1.1 Maven plug-in in Struts 2.

I export a Vietnamese report RTF format is ok, but when that report in PDF format font error I can not display Vietnamese.

I tried many different ways to add file font.jar jasperreport.property classpath or use the simplest way is to add a XML tag: encoding = UTF-8 but it does not resolve the problem.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

呢古 2024-12-17 20:20:38

尝试在报告模板中为 font 元素设置 isPdfEmbeddedpdfEncoding 属性。
不要忘记您使用的字体必须支持越南语。

示例:

        <textField>
            <reportElement x="49" y="0" width="359" height="38"/>
            <textElement>
                <font fontName="Arial" pdfEncoding="Identity-H" isPdfEmbedded="true"/>
            </textElement>
            <textFieldExpression><![CDATA[$R{title}]]></textFieldExpression>
        </textField>

请检查您的报告是否也具有正确的编码:

<property name="ireport.encoding" value="UTF-8"/>

Try to set isPdfEmbedded and pdfEncoding properties for font element in your report template.
Don't forget that the font you are using must have Vietnamese support.

The sample:

        <textField>
            <reportElement x="49" y="0" width="359" height="38"/>
            <textElement>
                <font fontName="Arial" pdfEncoding="Identity-H" isPdfEmbedded="true"/>
            </textElement>
            <textFieldExpression><![CDATA[$R{title}]]></textFieldExpression>
        </textField>

Please check that your report has also correct encoding:

<property name="ireport.encoding" value="UTF-8"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文