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>