我是Java初学者,在学swing控件遇到如下问题,不知如何解决
import java.awt.*;import java.awt.event.*;
import java.swing.*;
import *;
import *;
public class StudentInform extends JFrame
{
JMenuBar jmenubar = new JMenuBar();
JMenu jmenu_file = new JMenu("文件");
JMenu jmenu_help = new JMenu("帮助");
JMenuItem jmenuitem_open = new JMenuItem("打开");
JMenuItem jmenuitem_out = new JMenuItem("退出");
JMenuItem jmenuitem_about = new JMenuItem("关于");
public StudentInform()
{
Container contentPane = getContentPane();
contentPane.setLayout(null);
setTitle("学生信息系统(1)");
jmenubar.add(jmenu_file);
jmenubar.add(jmenu_help);
jmenu_file.add(jmenuitem_open);
jmenu_file.addSeparator();
jmenu_file.add(jmenuitem_out);
jmenu_help.add(jmenuitem_about);
setJMenuBar(jmenubar);
setSize(250,100);
setVisible(true);
addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
});
}
public static void main(String args[])
{
new StudentInform();
}
}
编译时出现如下错误,很多
E:\java>javac StudentInform.java
StudentInform.java:4: 软件包 java.swing 不存在
import java.swing.*;
^
StudentInform.java:8: 找不到符号
符号: 类 JFrame
public class StudentInform extends JFrame
^
StudentInform.java:10: 找不到符号
符号: 类 JMenuBar
位置: 类 StudentInform
JMenuBar jmenubar = new JMenuBar();
^
StudentInform.java:11: 找不到符号
符号: 类 JMenu
位置: 类 StudentInform
JMenu jmenu_file = new JMenu("文件");
^
StudentInform.java:12: 找不到符号
符号: 类 JMenu
位置: 类 StudentInform
JMenu jmenu_help = new JMenu("帮助");
^
StudentInform.java:13: 找不到符号
符号: 类 JMenuItem
位置: 类 StudentInform
JMenuItem jmenuitem_open = new JMenuItem("打开");
^
StudentInform.java:14: 找不到符号
符号: 类 JMenuItem
位置: 类 StudentInform
JMenuItem jmenuitem_out = new JMenuItem("退出");
^
StudentInform.java:15: 找不到符号
符号: 类 JMenuItem
位置: 类 StudentInform
JMenuItem jmenuitem_about = new JMenuItem("关于");
^
StudentInform.java:10: 找不到符号
符号: 类 JMenuBar
位置: 类 StudentInform
JMenuBar jmenubar = new JMenuBar();
^
StudentInform.java:11: 找不到符号
符号: 类 JMenu
位置: 类 StudentInform
JMenu jmenu_file = new JMenu("文件");
^
StudentInform.java:12: 找不到符号
符号: 类 JMenu
位置: 类 StudentInform
JMenu jmenu_help = new JMenu("帮助");
^
StudentInform.java:13: 找不到符号
符号: 类 JMenuItem
位置: 类 StudentInform
JMenuItem jmenuitem_open = new JMenuItem("打开");
^
StudentInform.java:14: 找不到符号
符号: 类 JMenuItem
位置: 类 StudentInform
JMenuItem jmenuitem_out = new JMenuItem("退出");
^
StudentInform.java:15: 找不到符号
符号: 类 JMenuItem
位置: 类 StudentInform
JMenuItem jmenuitem_about = new JMenuItem("关于");
^
StudentInform.java:18: 找不到符号
符号: 方法 getContentPane()
位置: 类 StudentInform
Container contentPane = getContentPane();
^
StudentInform.java:20: 找不到符号
符号: 方法 setTitle(java.lang.String)
位置: 类 StudentInform
setTitle("学生信息系统(1)");
^
StudentInform.java:28: 找不到符号
符号: 方法 setSize(int,int)
位置: 类 StudentInform
setSize(250,100);
^
StudentInform.java:29: 找不到符号
符号: 方法 setVisible(boolean)
位置: 类 StudentInform
setVisible(true);
^
StudentInform.java:30: 找不到符号
符号: 方法 addWindowListener(<匿名 java.awt.event.WindowAdapter>)
位置: 类 StudentInform
addWindowListener(new WindowAdapter()
^
19 错误
不知哪里出现了错误