气垫船先生充满鳗鱼

我几乎照你说的做了。我的歉意它仍然没有显示:(

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。即使我遵循这些原则,也没有用!这个小东西浪费了我的时间,所以我决定问你们:(
请问有人可以告诉我为什么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);

}


}

最佳答案

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

您没有显示JTextArea,因为您使用的是null布局,并且在未指定其大小或位置的情况下添加了组件JScrollPane。

意见建议:


不要使用空布局和setBounds
而是使用布局管理器使用JPanels的适当组合
永远不要设置JTextArea的大小或界限。
是的,设置其行和列属性,就可以了。




编辑
关于您的最新帖子,让我补充一点,只是要清楚:


不要设置JTextArea的首选大小
不要设置JTextAera的任何大小。


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

关于java - JScrollPane无法正常工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21489286/

10-12 06:13