我刚刚开始使用 Flying Saucer 来显示将由我正在创建的解决方案填充的 html 报告。
本质上,我试图让飞碟XHTMLPanel
显示粗体,但到目前为止还不能。我尝试过使用<b></b>
标签,以及使用<span class="b"></span>
with.b {font-weight:bold;}
和其他几种方法,但到目前为止没有成功。下面是我目前正在使用的修剪后的 java 代码和下面的 xhtml。
public class HALReportViewMain extends JFrame {
XHTMLPanel panel;
FSScrollPane scroll;
public HALReportViewMain() throws Exception{
panel = new XHTMLPanel();
scroll = new FSScrollPane(panel);
panel.setDocument(new File("C:\\Users\\rudi.kershaw\\Desktop\\Report.html"));
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
add(scroll);
setSize((int)new PageFormat().getImageableWidth(), (int)new PageFormat().getImageableHeight());
setVisible(true);
}
public static void main(String[] args) throws Exception {
HALReportViewMain derp = new HALReportViewMain();
}
}
以及来自 xhtml Report.html 的 a 部分;
<html>
<head>
<style type="text/css">
body {font:10px arial,sans-serif;}
p {margin-left:5px;}
.b {font-weight:800;display:inline;margin:0;}
#address {position:absolute;top:0px;right:5px;text-align:right}
#picture {position:absolute;top:85px;right:20px;height:120px;width:240px;background-color:#E6E6E6}
.sitecontactswrapper {display:inline-block;margin:0px 10px;}
.sitecontacts {margin:0;}
</style>
</head>
<body>
<div class="sitecontactswrapper">
<p class="sitecontacts"><span class="b">Description: </span>Example</p>
<p class="sitecontacts"><span class="b">Full Name/s: </span>Example</p>
<p class="sitecontacts"><span class="b">Office Phone: </span>Example</p>
<p class="sitecontacts"><span class="b">Mobile Phone: </span>Example</p>
<p class="sitecontacts"><span class="b">Email Address: </span>Example</p>
</div>
</body>
</html>