How to have a Scrollable JTextPane?

前端 未结 5 2146
余生分开走
余生分开走 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 22:50

    Just put the JTextPane in a JScrollPane.

    public class SomeFrame
    {
      public static void main( String[] args )
      {
        JFrame frame = new JFrame( );
        frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    
        JTextPane tp = new JTextPane();
        JScrollPane sp = new JScrollPane(tp);
        frame.getContentPane().add( sp );
    
        frame.pack( );
        frame.setVisible( true );
      }
    }
    

提交回复
热议问题