JScrollPane无法正常工作

时间:2014-01-31 20:18:49

标签: java swing

先生。气垫船满鳗鱼

我几乎做了你说的话。 MY APOLOGY仍未显示:(

private void initialize() {
    frame = new JFrame();
    frame.setBounds(100, 100, 760, 666);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    //frame.getContentPane().setLayout(null);
    //frame.getContentPane().setLayout();

    textArea = new JTextArea(20,20);
    textArea.setPreferredSize(new Dimension(100, 100));
    textArea.setLineWrap(true);
    JScrollPane sp = new JScrollPane(textArea, JScrollPane.VERTICAL_SCROLLBAR_ALWAYS, JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
    frame.getContentPane().add(sp);
    frame.setVisible(true);

}


我正在使用Eclipse中的WindowBuilderPro在YouTube上关注教程。我想使用JScollPane创建(可滚动)JTextArea。即使我遵循原则,它也行不通!这个小东西消耗了我的时间,所以我决定问你们:( KINDLY,有人可以告诉我为什么JTextArea没有在JFrame中显示。

public class ProjectGUI {

private JFrame frame;
private JTextField urls;
private JTextArea textArea;

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

/**
 * Create the application.
 */
public ProjectGUI() {
    initialize();
}

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

    JPanel panel = new JPanel();
    panel.setBorder(new TitledBorder(null, "X.509 Extractor", TitledBorder.LEADING, TitledBorder.TOP, null, null));
    panel.setBounds(18, 16, 722, 145);
    panel.setLayout(null);
    frame.getContentPane().add(panel);

    urls = new JTextField();
    urls.setText("For multiple URLs, separate them by comma ,");
    urls.setForeground(Color.BLUE);
    urls.setBounds(59, 57, 646, 28);
    panel.add(urls);

    JButton button1 = new JButton("EXTRACT");
    button1.setBounds(303, 97, 117, 40);
    frame.setLocationRelativeTo(null);
    panel.add(button1);

    textArea = new JTextArea();
    textArea.setBounds(18, 212, 722, 414);
    textArea.setLineWrap(true);
    JScrollPane sp= new JScrollPane(textArea);
    frame.getContentPane().add(sp);
    frame.setVisible(true);

}

}

1 个答案:

答案 0 :(得分:4)

您正在设置JTextArea的边界,这是您永远不应该做的事情,这会阻止它在JScrollPane中增长。

您的JTextArea未显示,因为您正在使用空布局并添加组件而未指定其大小或位置,JScrollPane。

建议:

  • 请勿使用null布局和setBounds
  • 而是使用布局管理器的适当JPanel组合
  • 永远不要设置JTextArea的大小或范围。
  • 是的,设置其行和列属性,没关系。

修改
关于你的最新帖子,让我补充一下,只是为了清楚:

  • 请勿设置JTextArea的首选尺寸
  • 请勿设置JTextAera的 ANY 大小。

当JTextArea中的文本大于JScrollPane视口的边界时,您将看到滚动条。例如:

import java.util.Random;
import javax.swing.JOptionPane;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;

public class JTextAreaTest {
   public static void main(String[] args) {
      Random random = new Random();
      StringBuilder sb = new StringBuilder();
      for (int i = 0; i < 100; i++) {
         for (int j = 0; j < 20; j++) {
            for (int k = 0; k < random.nextInt(5) + 5; k++) {
               char c = (char) ('a' + random.nextInt(26));
               sb.append(c);               
            }
            sb.append(' ');
         }
         sb.append('\n');               
      }

      JTextArea textArea = new JTextArea(15, 40);
      textArea.setText(sb.toString());
      JScrollPane scrollpane = new JScrollPane(textArea);

      JOptionPane.showMessageDialog(null, scrollpane);
   }
}