我将JTextPane
保存为RTF时出现问题。不保存对齐。
如果我可以在保存之前搜索JTextPane
中心对齐,并添加标记,例如 center ,那么在打开文档时,我可以设置段落适当地格式化。
如何搜索JTextPane
中心/右侧文字对齐?
答案 0 :(得分:3)
获取Document
并将其投放到DefaultStyledDocument
。然后使用getParagraphElement()
方法从段落的开头获取偏移量。检查段落StyleConstants.getAlignment()
的对齐方式,并传递段落Element
的属性。然后使用段落的结束偏移量来获得下一个。