我是一个java初学者,我想做一个简单的文本编辑器,但我发现了以下问题。JTextArea 不会与 JFrame 一起重新调整大小。这是我的代码:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class textEditor
{
JFrame frame;
JTextArea textArea;
JScrollPane scrollPane;
//JButton button;
public textEditor() //Constructor
{
frame = new JFrame("Title of the frame!");
frame.setLayout(new FlowLayout());
textArea = new JTextArea("");
scrollPane = new JScrollPane(textArea);
scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
//button = new JButton();
}
public void launchFrame()
{
//Adding Text Area and ScrollPane to the Frame
frame.getContentPane().add(textArea);
frame.getContentPane().add(scrollPane);
//Make the Close button to close the frame when clicked
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//Displaying the Frame
frame.setVisible(true);
frame.pack();
}
public static void main(String args[])
{
textEditor window=new textEditor();
window.launchFrame();
}
}
请不要忘记我是初学者,所以请用简单的话给我一个解决方案。