我正在尝试使用eclipse和java在标签上显示消息。我创建JFrame
时遇到的第一个问题。这是eclipse不会自动添加导入包。即。 import javax.swing.JLabel
。第二个问题是,一旦我输入导入包,我仍然会收到错误消息,例如"导入javax.swing.Jlabel
无法解析。"所以在下面的代码中,当我从调色板中拖动对象并将其放入设计视图中时,我必须手动输入一些导入并自动放入一些导入。
import java.awt.EventQueue;
import javax.swing.*;
import javax.swing.JFrame;
import javax.swing.JButton;
import javax.swing.Jlabel;
import java.awt.Font;
import java.awt.Color;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
public class frame1 {
private JFrame frame;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
frame1 window = new frame1();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the application.
*/
public frame1() {
initialize();
}
/**
* Initialize the contents of the frame.
*/
private void initialize() {
frame = new JFrame();
frame.setBounds(100, 100, 889, 622);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setLayout(null);
JButton btnNewButton = new JButton("showMessage");
btnNewButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
//lbldisplayMessage.setText
}
});
btnNewButton.setForeground(new Color(153, 51, 51));
btnNewButton.setBackground(Color.CYAN);
btnNewButton.setFont(new Font("Script MT Bold", Font.BOLD, 16));
btnNewButton.setBounds(360, 449, 145, 40);
frame.getContentPane().add(btnNewButton);
JLabel lblNewLabel = new JLabel("The Message Goes here");
lblNewLabel.setFont(new Font("Tahoma", Font.PLAIN, 11));
lblNewLabel.setBounds(28, 124, 160, 50);
frame.getContentPane().add(lblNewLabel);
JLabel lbldisplayMessage = new JLabel("");
lbldisplayMessage.setBounds(162, 124, 200, 50);
frame.getContentPane().add(lbldisplayMessage);
}
}
答案 0 :(得分:1)
仅供参考, eclipse不会自动添加包
- 您必须手动导入或使用热键
对于您可以使用的导入
CTRL + SHIFT + O
答案 1 :(得分:-3)
确保将JRE库添加到classpath:
Project > Build Path > Configure build path... > Libraries tab > Add library > JRE System Library