Swing 的 JTextPane 是非常强大的文字处理工具,它不但可以处理文本,也可以作为浏览器来显示指定的网页。利用 JTextPane 可以很轻松地开发类似 Word 之类的文字处理工具。比如要设置文本为粗体,可以这样实现: MutableAttributeSet attr = new SimpleAttributeSet(); StyleConstants.setBold(attr, !StyleConstants .isBold(((HTMLEditorKit) editor.getEditorKit()) .getInputAttributes())); setCharacterAttributes(editor, attr, false); 设置背景色为: MutableAttributeSet attr = new SimpleAttributeSet(); StyleConstants.setBackground(attr, color); setCharacterAttributes(editor, attr, false); 看上去都没有什么问题,不过...