31

如何将滚动条添加到我的文本区域。我已经尝试过使用此代码,但它不起作用。

middlePanel=new JPanel();
middlePanel.setBorder(new TitledBorder(new EtchedBorder(), "Display Area"));

// create the middle panel components
display = new JTextArea(16, 58);
display.setEditable(false); // set textArea non-editable
scroll = new JScrollPane(display);
scroll.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);

//Add Textarea in to middle panel
middlePanel.add(scroll);
middlePanel.add(display);
4

4 回答 4

55

在此处将 JTextArea 添加到 JScrollPane 后:

scroll = new JScrollPane(display);

您不需要像您一样将其再次添加到其他容器中:

middlePanel.add(display);

只需删除最后一行代码,它就会正常工作。像这样:

    middlePanel=new JPanel();
    middlePanel.setBorder(new TitledBorder(new EtchedBorder(), "Display Area"));

    // create the middle panel components

    display = new JTextArea(16, 58);
    display.setEditable(false); // set textArea non-editable
    scroll = new JScrollPane(display);
    scroll.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);

    //Add Textarea in to middle panel
    middlePanel.add(scroll);

JScrollPane 只是另一个容器,它在需要时在组件周围放置滚动条,并且还具有自己的布局。当您想将任何内容包装到滚动中时,您只需将其传递给 JScrollPane 构造函数即可:

new JScrollPane( myComponent ) 

或像这样设置视图:

JScrollPane pane = new JScrollPane ();
pane.getViewport ().setView ( myComponent );

额外的:

这是完全有效的示例,因为您仍然无法正常工作:

public static void main ( String[] args )
{
    JPanel middlePanel = new JPanel ();
    middlePanel.setBorder ( new TitledBorder ( new EtchedBorder (), "Display Area" ) );

    // create the middle panel components

    JTextArea display = new JTextArea ( 16, 58 );
    display.setEditable ( false ); // set textArea non-editable
    JScrollPane scroll = new JScrollPane ( display );
    scroll.setVerticalScrollBarPolicy ( ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS );

    //Add Textarea in to middle panel
    middlePanel.add ( scroll );

    // My code
    JFrame frame = new JFrame ();
    frame.add ( middlePanel );
    frame.pack ();
    frame.setLocationRelativeTo ( null );
    frame.setVisible ( true );
}

这就是你得到的: 在此处输入图像描述

于 2012-04-16T15:44:45.473 回答
6

我天真的假设是滚动窗格的大小将自动确定......

唯一对我有用的解决方案是明确地看到 JScrollPane 的界限

import javax.swing.*;

public class MyFrame extends JFrame {

    public MyFrame()
    {
        setBounds(100, 100, 491, 310);
        getContentPane().setLayout(null);

        JTextArea textField = new JTextArea();
        textField.setEditable(false);

        String str = "";
        for (int i = 0; i < 50; ++i)
            str += "Some text\n";
        textField.setText(str);

        JScrollPane scroll = new JScrollPane(textField);
        scroll.setBounds(10, 11, 455, 249);                     // <-- THIS

        getContentPane().add(scroll);
        setLocationRelativeTo ( null );
    }
}

也许它会帮助一些未来的访客:)

于 2014-02-12T17:59:39.147 回答
3

尝试将这两行添加到您的代码中。我希望它会奏效。它对我有用:)

display.setLineWrap(true);
display.setWrapStyleWord(true);

输出图片如下所示

在此处输入图像描述

于 2015-10-20T22:46:25.727 回答
1

使用 java swing 实现滚动条的最简单方法如下:

  1. 导航到设计视图
  2. 右键单击文本区域
  3. 使用 JScrollPane 选择环绕
于 2020-08-26T03:40:54.110 回答