Setting the tab policy in Swing's JTextPane

后端 未结 3 1123
借酒劲吻你
借酒劲吻你 2021-01-22 10:25

I want my JTextPane to insert spaces whenever I press Tab. Currently it inserts the tab character (ASCII 9).

Is there anyway to customize the tab policy of JTextPane (o

3条回答
  •  隐瞒了意图╮
    2021-01-22 11:24

    You could try sub-classing DefaultStyledDocument and overriding insert to replace any tabs in the inserted elements with spaces. Then install your sub-class in JTextPane with setStyledDocument(). This may be more trouble than catching key events though.

提交回复
热议问题