Scroll JScrollPane to bottom

前端 未结 12 919
庸人自扰
庸人自扰 2020-11-30 02:18

I need to scroll a JScrollPane to the bottom. The JScrollPane contains a JPanel, which contains a number of JLabel\'s.

To scroll to the top, I just do:



        
12条回答
  •  失恋的感觉
    2020-11-30 02:57

    If your JScrollPane only contains a JTextArea then:

    JScrollPane.getViewport().setViewPosition(new Point(0,JTextArea.getDocument().getLength()));
    

提交回复
热议问题