Java JTextArea,可自动调整大小和滚动

2022-09-04 07:17:46

我在JPanel中有一个JTextArea。如何让JTextArea填充整个JPanel,并在JPanel调整大小时调整大小,并在输入太多文本时滚动?


答案 1
JPanel panel = new JPanel();
panel.setLayout(new BorderLayout());  //give your JPanel a BorderLayout

JTextArea text = new JTextArea(); 
JScrollPane scroll = new JScrollPane(text); //place the JTextArea in a scroll pane
panel.add(scroll, BorderLayout.CENTER); //add the JScrollPane to the panel
// CENTER will use up all available space

有关JScrollPane的更多详细信息,请参阅 http://download.oracle.com/javase/6/docs/api/javax/swing/JScrollPane.html 或 http://download.oracle.com/javase/tutorial/uiswing/components/scrollpane.html


答案 2

将 JTextArea 放在 JScrollPane 中,然后将其放入 JPanel 中,其布局可固定大小。例如,带有GridBagLayout的示例可能如下所示:

JPanel panel = new JPanel();
panel.setLayout(new GridBagLayout());

JScrollPane scrollpane = new JScrollPane();
GridBagConstraints cons = new GridBagContraints();
cons.weightx = 1.0;
cons.weighty = 1.0;
panel.add(scrollPane, cons);

JTextArea textArea = new JTextArea();
scrollPane.add(textArea);

这只是一个粗略的草图,但它应该说明如何做到这一点。


推荐