Java JScrollPane和JTextArea滚动

Java JScrollPane和JTextArea滚动,java,jscrollpane,jtextarea,Java,Jscrollpane,Jtextarea,我正在将一些日志输出到JScrollPane中包含的JTextArea中,但是当输出到达textArea底部时,自动滚动功能不起作用。我尝试了几种在网上看到的方法,但没有一种有效。下面是到目前为止我的代码部分 JTextArea ouputLogPane = new JTextArea(); JScrollPane outputPane = new JScrollPane(ouputLogPane); outputPane.setVerticalScrollBarPolicy(JScrollPa

我正在将一些日志输出到JScrollPane中包含的JTextArea中,但是当输出到达textArea底部时,自动滚动功能不起作用。我尝试了几种在网上看到的方法,但没有一种有效。下面是到目前为止我的代码部分

JTextArea ouputLogPane = new JTextArea();
JScrollPane outputPane = new JScrollPane(ouputLogPane);
outputPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
outputPane.setBounds(75, 501, 746, 108);
contentPane.add(outputPane);
现在,我在另一个类中读取源文件,并使用下面的代码将日志详细信息附加到textArea

public void readFile(JTextArea outputLog, JScrollPane scrollPane){
    count = 0;
    while(moreLinesToRead){
       if(count % 100 == 0){
       outputLog.update(outputLog.getGraphics());
       outputLog.append("Completed Reading"+ count + " Records "\n");
       DefaultCaret caret = (DefaultCaret)outputLog.getCaret();
       caret.setUpdatePolicy(DefaultCaret.ALWAYS_UPDATE);
       outputLog.update(outputLog.getGraphics());
       //tried the one below but did not work either
       //outputLog.setCaretPosition(outputLog.getDocument().getLength());
    }
    count++;
    }
}
最后,当单击按钮时,我将在中调用此方法,如下所示

JButton btnNewButton = new JButton("Start Reading");
    btnNewButton.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent e) {
        migrationUtil.readFile(ouputLogPane,outputPane);
    }
});
因此,基本上只有在执行完成后,才会打印完整的输出。我读到,我可能必须使用一个单独的线程来处理它,但不太确定如何继续

编辑

import java.awt.Color;
import java.awt.EventQueue;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.sql.Connection;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.border.LineBorder;
import javax.swing.border.TitledBorder;

public class ReadingExample extends JFrame {

    private JPanel contentPane;


    private Connection conn;


    /**
     * Launch the application.
     */
    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                try {
                    ReadingExample frame = new ReadingExample();
                    frame.setVisible(true);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }

    /**
     * Create the frame.
     */
    public ReadingExample() {
        //setResizable(false);
        setFont(new Font("Dialog", Font.BOLD, 13));
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setBounds(100, 100, 936, 720);
        setLocationRelativeTo(null);
        contentPane = new JPanel();
        contentPane.setBorder(new LineBorder(new Color(0, 0, 0), 2));
        setContentPane(contentPane);
        contentPane.setLayout(null);

        final JTextArea ouputLogPane = new JTextArea();
        final JScrollPane outputPane = new JScrollPane(ouputLogPane);
        //outputPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
        outputPane.setBounds(67, 189, 746, 108);
        contentPane.add(outputPane);


        JButton btnNewButton = new JButton("Start Reading");
        btnNewButton.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                File file = new File("file.txt");
                FileReader fileReader = null;
                try {
                    fileReader = new FileReader(file);
                } catch (FileNotFoundException e1) {
                    // TODO Auto-generated catch block
                    e1.printStackTrace();
                }
                BufferedReader bufferedReader = new BufferedReader(fileReader);

                String line;
                try {
                    while((line = bufferedReader.readLine()) != null) {
                        ouputLogPane.append(line + "\n");
                        ouputLogPane.setCaretPosition(ouputLogPane.getDocument().getLength());
                        try {
                            Thread.sleep(200);
                        } catch (InterruptedException ee) {
                            ee.printStackTrace();
                        }
                    }
                } catch (IOException e1) {
                    // TODO Auto-generated catch block
                    e1.printStackTrace();
                }

            }
        });
        btnNewButton.setFont(new Font("Tahoma", Font.BOLD, 14));
        btnNewButton.setBounds(358, 620, 167, 29);
        contentPane.add(btnNewButton);

        //JPanel panel_3 = new JPanel();
        //panel_3.setBorder(new TitledBorder(null, "Process Log", TitledBorder.LEADING, TitledBorder.TOP, null, null));
        //panel_3.setBounds(57, 173, 769, 132);
        //contentPane.add(panel_3);

    }
}

您要做的是在一个单独的线程中读取文件,这样您的Swing线程就不会被它阻塞,从而允许您同时更新文本区域

但是,您仍然需要在Swing线程上更新GUI,因此可以通过调用
SwingUtilities.invokeLater(runnable)
来实现这一点

下面是一个工作示例(注意,我添加了一个
Thread.sleep(200)
,因此您可以看到它正在更新):


有两种方法可以滚动到底部。您可以操纵滚动条:

JScrollBar scrollBar = scrollPane.getVerticalScrollBar();
scrollBar.setValue(scrollBar.getMaximum());
或者,您可以使用更可靠的
scrollRectToVisible
方法:

try {
    textArea.scrollRectToVisible(
        textArea.modelToView(
            textArea.getDocument().getLength()));
} catch (BadLocationException e) {
    throw new RuntimeException(e);
}

我有几乎相同的代码,并看到我的编辑。我不知道为什么它不工作。所以基本上它就像是文本区域更新被主线程阻止。你能检查我的编辑吗,我提供了完整的源代码,因为我有你的两种方法,但它不起作用。你在对另一个答案的评论中得出的结论是正确的:你正在阻止事件调度线程,这会阻止任何组件绘制。看见
try {
    textArea.scrollRectToVisible(
        textArea.modelToView(
            textArea.getDocument().getLength()));
} catch (BadLocationException e) {
    throw new RuntimeException(e);
}