如何在JTextArea中设置为不可编辑时自动滚动?

时间:2014-03-13 13:21:21

标签: java swing user-interface jscrollpane jtextarea

我使用this答案来获取JTextArea上的自动滚动功能。但它似乎只有在同一个JTextArea的setEditable属性设置为TRUE时才有效。当然,我使用的是JScrollPane。

我正在开发一个聊天应用程序作为大学项目。显示消息的区域是完全相同的JTextArea。我在上面的链接的第一个答案中使用了第二组代码。但是当setEditable设置为FALSE时,我需要它才能使它工作。

即使在JTextArea&的setAutoScrolls属性之后它也无法工作。 JScrollPane设置为TRUE。

请帮忙。感谢名单。

2 个答案:

答案 0 :(得分:3)

  

我已经使用这个答案来获得自动滚动的功能   JTextArea中。但它似乎只有在setEditable时才有效   同一JTextArea的属性设置为TRUE。当然,我用的是   JScrollPane的

  • 我没有看到setEditable(false)和/或setEnabled(false)与他们可能的组合有任何问题

  • (狂暴拍摄到黑暗中)排除EventDispatchThread的问题,当setText, append等未在EDT上完成时,例如包含在invokeLater()

.

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

public class CaretAndJTextArea {

    private JTextArea textArea = new JTextArea();
    private static final String string =
            "Trail: Creating a GUI with JFC/Swing\n"
            + "Lesson: Learning Swing by Example\n"
            + "This lesson explains the concepts you need to\n"
            + " use Swing components in building a user interface.\n"
            + " First we examine the simplest Swing application you can write.\n"
            + " Then we present several progressively complicated examples of creating\n"
            + " user interfaces using components in the javax.swing package.\n"
            + " We cover several Swing components, such as buttons, labels, and text areas.\n"
            + " The handling of events is also discussed,\n"
            + " as are layout management and accessibility.\n"
            + " This lesson ends with a set of questions and exercises\n"
            + " so you can test yourself on what you've learned.\n"
            + "http://docs.oracle.com/javase/tutorial/uiswing/learn/index.html\n";

    public CaretAndJTextArea() {
        DefaultCaret caret = (DefaultCaret) textArea.getCaret();
        caret.setUpdatePolicy(DefaultCaret.ALWAYS_UPDATE);
        textArea.setEditable(false);
        textArea.setEnabled(false);
        textArea.getDocument().addDocumentListener(new DocumentListener() {
            @Override
            public void insertUpdate(DocumentEvent e) {
                setModelText();
            }

            @Override
            public void removeUpdate(DocumentEvent e) {
                setModelText();
            }

            @Override
            public void changedUpdate(DocumentEvent e) {
                setModelText();
            }

            private void setModelText() {
                SwingUtilities.invokeLater(new Runnable() {
                    @Override
                    public void run() {
                        //textArea.setText(textArea.getText());
                    }
                });
            }
        });
        JButton button2 = new JButton("Append String");
        button2.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                textArea.append(string);
            }
        });
        JFrame frame = new JFrame();
        frame.add(new JScrollPane(textArea), BorderLayout.CENTER);
        frame.add(button2, BorderLayout.SOUTH);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(400, 200);
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                new CaretAndJTextArea();
            }
        });
    }
}

答案 1 :(得分:0)

试试这个小例子:

JPanel myPanel=new JPanel();
myPanel.setBorder(new TitledBorder(new EtchedBorder(), "My Application"));

JTextAea textArea = new JTextArea(16, 58);
textArea.setEditable(false); // set textArea to non editable
JScrollPane scrollPane = new JScrollPane(textArea);
scrollPane.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);

myPanel.add(scrollPane);

有效吗?

相关问题