How to have a Scrollable JTextPane?

前端 未结 5 2130
余生分开走
余生分开走 2021-01-07 22:22

I would like to have a JTextPane that have scroll bar, how can I do so ? Thanks.

5条回答
  •  渐次进展
    2021-01-07 23:09

    To insert a scroll bar on your new JTextPane, just use a JScrollPane:

    JTextPane txt = new JTextPane();
    
    JScrollPane jsp = new JScrollPane(txt);
    

    JTextPane API: http://download.oracle.com/javase/6/docs/api/javax/swing/JTextPane.html

    JScrollPane API: http://download.oracle.com/javase/6/docs/api/javax/swing/JScrollPane.html

    If you have some issues, take a look at this SO question : Java JTextPane JScrollPane Display Issue

    Or take a look at: http://www.daniweb.com/software-development/java/threads/30283

提交回复
热议问题