我有 2 个 JEditorPane。我想从一个 JEditorPane 的正文中获取文本并将其附加到另一个 JEditorPane。使用 .getText() 从第一个 JEditorPane 打印输出是:
<html>
<head>
</head>
<body>
Here is some <b>bold text</b>
</body>
</html>
我想在正文中获取整个字符串,包括粗体标签
我有 2 个 JEditorPane。我想从一个 JEditorPane 的正文中获取文本并将其附加到另一个 JEditorPane。使用 .getText() 从第一个 JEditorPane 打印输出是:
<html>
<head>
</head>
<body>
Here is some <b>bold text</b>
</body>
</html>
我想在正文中获取整个字符串,包括粗体标签