我使用“Pentaho Reporting Engine Classic 版本 7.0.0.0-25.-1”创建了用于生成报告的 springboot 服务
问题:- 与 PRD 相比输出不同。在生成 HTML(其他格式)输出时
PRD的输出
<td valign="middle" class="style-7">ABC-1001-1700860</td>
相关样式是
.style-7 {
color: black;
font-size: 8pt;
font-family: "Arial";
font-weight: normal;
font-style: normal;
text-decoration: none;
text-align: left;
word-spacing: 0pt;
letter-spacing: 0pt;
white-space: pre-wrap;
border-bottom: 1pt solid #ccccff;
border-right: 1pt solid #ccccff
}
从服务
<td valign="middle" class="style-4">ABC-1001-1 700860</td>
相关风格
.style-4 {
color: black;
font-size: 8pt;
font-family: "Arial";
font-weight: normal;
font-style: normal;
text-decoration: none;
text-align: left;
word-spacing: 0pt;
letter-spacing: 0pt;
white-space: pre-wrap;
border-bottom: 1pt solid #ccccff;
border-right: 1pt solid #ccccff
}
问题:-
CSS类名不同(但没有区别,所以好吧..)
数据中有空间。
为什么会出现空格(ABC-1001-1 700860)?如何获得精确的输出作为 PRD?
如何获得最新的 pentaho(8 起) jars。也?