如何使用Java修改JasperReports中的textField
我在 JasperReports
中创建了一个 textField
。 使用 Java 如何修改 textField
属性,如宽度、位置等?
I have created a textField
in JasperReports
. Using Java how do i modify the textField
properties like width, postion etc?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要将报告模板的设计分解为静态部分(不是静态内容,而是静态设计)和动态部分。
使用子报表外部化模板的静态部分。
JasperReports 允许动态创建报告模板。 根据现有子报告编写最终报告模板,仅动态添加和修改动态部分。
You need to break down the design of your report template into parts which will be static (not as a static content but a static design) and the dynamic one.
Use subreports to externalize static parts of the template.
JasperReports allows dynamic creation of report templates. Compose final report template from existing subreports adding and modifying on the fly just the parts that are dynamic.
我们可以通过 JRTextField 类动态更改文本字段属性...请参阅 http://jasperreports.sourceforge .net/api/index.html 用于 API 及其方法
we can change the textfield properties dynamically through JRTextField class.... Refer http://jasperreports.sourceforge.net/api/index.html for API and its methods