web-dev-qa-db-ja.com

Java:テキストエリアにスクロールを追加

スクロールバーをテキスト領域に追加するにはどうすればよいですか。私はこのコードで試しましたが、うまくいきません。

            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);

ありがとう

23
Ravi

ここで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 );
}

そして、ここにあなたが得るものがあります: enter image description here

50
Mikle Garin

私の素朴な仮定は、スクロールペインのサイズが自動的に決定されるということでした...

実際に私のために働いた唯一の解決策は、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 );
    }
}

将来の訪問者を助けるかもしれない:)

5
LihO

これらの2行をコードに追加してみてください。うまくいくことを願っています。それは私のために働いた:)

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

出力の写真を以下に示します

enter image description here

2
farhangdon