我有一个swing应用程序,并且编写了代码来更改JTextArea的背景颜色。但是,这给了我异常(exception)。
这是代码:
//1.JtextArea will work after maximize.
//2.on typing text,background will slowly transform to black line by line.
import java.awt.*;
import javax.swing.*;
public class TextArea {
JTextArea area;
JFrame frame;
public static void main(String args[])
{
TextArea x = new TextArea();
x.execute();
}
void execute()
{
frame = new JFrame();
frame.setVisible(true);
frame.setSize(600,600);
frame.setTitle("Temp Area");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
area = new JTextArea();
frame.add(area,BorderLayout.CENTER);
Color c = new Color(0,0,0,100);
area.setBackground(c);
}
}
最佳答案
frame.setVisible(true);
移动为空execute()
的最后代码JTextArea
添加到已经可见的Swing GUI中,但它不是基于 Initial Thread
public class TextArea {
重命名为public class MyTextArea
{,因为TextArea
保留了awt.TextArea
的Java字TextArea x=new TextArea();
和x.execute()
;应该包裹在invokeLater
中,更多关于 Oracle tutorial Initial Thread