简体   繁体   English

Jaspersoft Studio:UTF-8编码问题

[英]Jaspersoft studio: UTF-8 encoding issue

I am using Jaspersoft Studio final version (v6.1.1). 我正在使用Jaspersoft Studio最终版本(v6.1.1)。 I have designed my report and it contains Turkish characters. 我设计了报告,其中包含土耳其语字符。 When exporting the report from Studio as PDF Turkish characters are not shown although I've set the Studio workspace encoding to UTF-8. 从Studio以PDF格式导出报告时,尽管我已将Studio工作区编码设置为UTF-8,但土耳其语字符不会显示。 Also I have embed the jrxml report file in my JSF app and export the report, the result is the same. 另外,我已经将jrxml报告文件嵌入到我的JSF应用程序中并导出报告,结果是相同的。

Do I have to configure something more? 我是否还需要配置其他内容?

I was able to solve the problem. 我能够解决问题。 In the Jaspersoft Studio IDE, change encoding to UTF-8 in Window/Prefrences/General/Workspace. 在Jaspersoft Studio IDE中,在“窗口/首选项/常规/工作区”中将编码更改为UTF-8。 Afterwards click any field, parameter, or text in the IDE and from the Properties/Advanced menu select PDF/PDF Encoding. 然后,在IDE中单击任何字段,参数或文本,然后从“属性/高级”菜单中选择“ PDF / PDF编码”。 I hope it will help. 希望对您有所帮助。

I think i have found an easier and more general solution. 我想我找到了一个更简单,更通用的解决方案。 Instead of changing encoding of every field, you can do it using java coding from your web application`s controller. 无需更改每个字段的编码,而是可以使用Web应用程序控制器中的Java编码来完成此操作。 Below is my solution, i hope it helps a bit. 以下是我的解决方案,希望对您有所帮助。 Just put the font to your webapp folder. 只需将字体放入您的webapp文件夹即可。 And change the encoding programatically. 并以编程方式更改编码。 BTW greetings from turkey :) 来自土耳其的BTW问候:)

    JRDesignStyle jrDesignStyle = new JRDesignStyle();
    /*Set the Encoding to UTF-8 for pdf and embed font to arial*/
    jrDesignStyle.setDefault(true);
    String fontPath = req.getSession().getServletContext().getRealPath("/jasper/arial.ttf");
    jrDesignStyle.setPdfFontName(fontPath);
    jrDesignStyle.setPdfEncoding("Identity-H");
    jrDesignStyle.setPdfEmbedded(true);
    jasperPrint.addStyle(jrDesignStyle);

    JRPdfExporter exporter = new JRPdfExporter();

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM