如何使用 DynamicJasper 更改文本元素的标记值?

发布于 2024-12-17 08:51:17 字数 399 浏览 0 评论 0原文

我正在使用 DynamicJasper 在运行时从某些表生成报告。我有一些字段,在创建数据时使用基本 html 标签对数据进行了样式设置。非常基本的标签(如粗体和斜体)和 jasper 报告可以通过将 textElement 的 markup 属性设置为 html 来处理它们。问题是无法找到使用 DynamicJasper 更改它的方法。

我尝试使用在 ColumnBuilder 中找到的 addFieldProperty("markup", "html") ,但这将标记作为属性添加到字段标记中(可能很明显它应该这样做基于名称)而不是文本元素。

如何使用 DynamicJasper 更改文本元素的标记值?

I am using DynamicJasper to generate reports from some tables at run time. I have some fields that the data has been styled using basic html tags as the data was created. Very basic tags like bold and italic, and jasper reports can handle them by setting the markup attribute of the textElement to html. The problem is a can not find a way to change it using DynamicJasper.

I have tried using addFieldProperty("markup", "html") found in ColumnBuilder, but that adds markup as a property to the field markup (probably obvious that it should do that based on the name) instead of the text elemennt.

How to you change the markup value for a text element using DynamicJasper?

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

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

发布评论

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

评论(1

暗地喜欢 2024-12-24 08:51:17

DynamicJasper API 不包含设置标记的方法。

但是您可以使用 JasperReports API 来满足此需求。
例如, JRBasePrintText 类和 JRCommonText 接口有设置标记的方法:

public void setMarkup(java.lang.String markup)

JRCommonText 接口具有常量字段:

public static final String MARKUP_NONE = "none";
public static final String MARKUP_STYLED_TEXT = "styled";
public static final String MARKUP_HTML = "html";
public static final String MARKUP_RTF = "rtf";

您可以根据需要修改 DynamicJasper 类,如这篇文章。

The DynamicJasper API does not contain methods to set markup.

But you can use JasperReports API for this needs.
For example, the JRBasePrintText class and JRCommonText interface have method for setting markup:

public void setMarkup(java.lang.String markup)

The JRCommonText interface has constant fields:

public static final String MARKUP_NONE = "none";
public static final String MARKUP_STYLED_TEXT = "styled";
public static final String MARKUP_HTML = "html";
public static final String MARKUP_RTF = "rtf";

You can modify DynamicJasper classes for your needs like in this post, for example.

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