JTextArea滚动功能

时间:2016-05-05 01:48:43

标签: java swing jscrollpane layout-manager null-layout-manager

我目前有一个Java应用程序正在使用JTextArea的实例向用户显示数据。他们按下一个按钮,就会填充从数据库中存储的数据。

没有垂直滚动条,数据库中的表包含的行数多于屏幕上可以容纳的行数。

如何在此文本区域添加垂直滚动条?

代码的许多部分依赖于写入JTextArea,重构代码以适应打印到另一种类型的容器将花费大量时间。

有没有办法将JTextArea打包成ScrollPane

当前代码(显示没有滚动条的textArea):

    /**
     * Initialize the contents of the frame.
     */
    private void initialize() {
        frame = new JFrame();
        frame.setBounds(100, 100, 1057, 484);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.getContentPane().setLayout(null);

        JTextArea mainTextArea = new JTextArea();

        mainTextArea.setLineWrap(true);
        mainTextArea.setWrapStyleWord(true);
        mainTextArea.setBounds(21, 93, 995, 336);
        frame.getContentPane().add(mainTextArea);
    // (continued...)

我尝试将代码包装在滚动窗格中(既不文本区域也不显示滚动条):

    /**
     * Initialize the contents of the frame.
     */
    private void initialize() {
        frame = new JFrame();
        frame.setBounds(100, 100, 1057, 484);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.getContentPane().setLayout(null);

        JTextArea mainTextArea = new JTextArea();

        mainTextArea.setLineWrap(true);
        mainTextArea.setWrapStyleWord(true);
        mainTextArea.setBounds(21, 93, 995, 336);
        JScrollPane scroll = new JScrollPane (MainTextArea);
        scroll.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
        frame.getContentPane().add(scroll);
        frame.getContentPane().setVisible(true);
    // (continued...)

2 个答案:

答案 0 :(得分:1)

你犯了几个错误

<强> frame.getContentPane().setLayout(null);

  • 此语句删除与之关联的默认BorderLayout JFrame现在它没有任何布局。

  • 因为JFrame的布局变为null,所以你需要使用 在添加到JFrame之前,JScrollpane的setBounds()方法,否则它将不可见。

  • 如果您设置类似scroll.setBounds(21, 93, 995, 336);的内容,您将能够看到JScrollPane添加了JFrame

注意: frame.getContentPane().setVisible(true); 不会使您的JFrame可见,您需要将其更改为 frame.setVisible(true)

总是尝试在swing中使用Layouts而不是设置null布局。如果你使用null布局,你需要手动指定setBounds,这在摇摆中设计UI的方式并不好。

完整的工作代码,不使用任何布局:

package com.jd.swing;

import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;

public class JFrameExample {`enter code here`
private JFrame frame;

private void initialize() {
    frame = new JFrame();
    frame.setBounds(100, 100, 1057, 484);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.getContentPane().setLayout(null);
    JTextArea MainTextArea = new JTextArea();
    MainTextArea.setLineWrap(true);
    MainTextArea.setWrapStyleWord(true);
    MainTextArea.setBounds(21, 93, 995, 336);
    JScrollPane scroll = new JScrollPane(MainTextArea);
    scroll.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
    scroll.setBounds(21, 93, 995, 336);
    frame.getContentPane().add(scroll);
    frame.setVisible(true);
}

public static void main(String[] args) {
    new JFrameExample().initialize();
}
}

Output Screen

答案 1 :(得分:0)

仅供参考,

如果文本区域中有多行,则默认情况下滚动条会滚动到文本区域的末尾。要保持文本区域中的行包装并滚动到文本区域的顶部,以下代码将有助于

MainTextArea.setWrapStyleWord(true);
MainTextArea.setLineWrap(true);
DefaultCaret caret = (DefaultCaret) MainTextArea.getCaret();
caret.setUpdatePolicy(DefaultCaret.NEVER_UPDATE);