Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JTextPane我在将 a 保存为 RTF时遇到了问题。对齐未保存。
JTextPane
如果我可以JTextPane在保存之前搜索中心对齐,并添加一个标签,例如center,那么在文档打开时,我可以适当地设置段落格式。
如何搜索JTextPane居中/右文本对齐?
获取您的Document并将其转换为DefaultStyledDocument. 然后使用该getParagraphElement()方法获取距段落开头的偏移量。检查段落的对齐方式StyleConstants.getAlignment()并传递段落的属性Element。然后使用段落的结束偏移来获取下一个。
Document
DefaultStyledDocument
getParagraphElement()
StyleConstants.getAlignment()
Element