H2ONaCl
H2ONaCl

Reputation: 11269

getting JTextPane to scroll

How do I get JTextPane to scroll? In this example, JScrollPane is employed but as running the code will reveal, the scroll bar can be displayed but it is not functional.

import java.awt.BorderLayout;
import javax.swing.*;
import javax.swing.text.*;

public class JTextPaneTester
{
    JTextPane jtp = new JTextPane();
    StyledDocument doc;
    Style style;
    JScrollPane jsp = new JScrollPane(jtp);

    JTextPaneTester()
    {
        doc = (StyledDocument)jtp.getDocument();
        style = doc.addStyle("fancy", null);
        jsp.setVerticalScrollBarPolicy(
                ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
    }

    void append(String s)
    {
        try
        {
            doc.insertString(doc.getLength(), s, style);
        }
        catch (BadLocationException e) { assert false: "problem"; }
    }

    public static void main(String[] args)
    {
        JTextPaneTester thing = new JTextPaneTester();

        for (int i = 0; i < 100; i++)
            thing.append("nouns verbs adjectives \n");

        JFrame f = new JFrame();
        JPanel center = new JPanel();
        f.add(center, BorderLayout.CENTER);

        center.add(thing.jsp);
        f.setSize(400, 400);
        f.setVisible(true);
    }
}

Upvotes: 2

Views: 954

Answers (1)

lauwie
lauwie

Reputation: 301

If I place the snippet

for (int i = 0; i < 100; i++) {
      thing.append("nouns verbs adjectives \n");
}

after

f.setVisible(true);

it seems to work.

Upvotes: 1

Related Questions