我有一个 HTML 文档存储在我的 java 应用程序的内存中(在 Flying Saucer XHTMLPanel 上设置)。
xhtmlPanel.setDocument(Main.class.getResource("/mailtemplate/DefaultMail.html").toString());
html文件如下;
<html>
<head>
</head>
<body>
<p id="first"></p>
<p id="second"></p>
</body>
</html>
我想设置元素的内容p
。我不想为其设置架构以使用 getDocumentById(),那么我有什么替代方案?