0

我正在为一门课程编写程序,我需要让美国国旗将旗杆缩放到国歌。我有代码,但得到一个错误,即即使它在那里也找不到小程序。我正在使用日食。任何人都可以帮助我解决我所缺少的吗?

提前致谢...

代码:

@SuppressWarnings("serial")
public class Lab5b extends JApplet {
  private AudioClip audioClip;

  public Lab5b() {
    add(new ImagePanel());

    URL urlForAudio = getClass().getResource("audio/us.mid");
    audioClip = Applet.newAudioClip(urlForAudio);
    audioClip.loop();
  }

  public void start() {
    if (audioClip != null) audioClip.loop();
  }

  public void stop() {
    if (audioClip != null) audioClip.stop();
  }

  /** Main method */
  public static void main(String[] args) {
    // Create a frame
    JFrame frame = new JFrame("Lab 5");

    // Create an instance of the applet
    Lab5b applet = new Lab5b();
    applet.init();

    // Add the applet instance to the frame
    frame.add(applet, java.awt.BorderLayout.CENTER);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    // Display the frame
    frame.setSize(200, 660);
    frame.setVisible(true);
  }
}

@SuppressWarnings("serial")
class ImagePanel extends JPanel {
  private ImageIcon imageIcon = new ImageIcon("image/us.gif");
  private Image image = imageIcon.getImage();
  private int y = 550;

  public ImagePanel() {
        Timer timer = new Timer(120, new TimerListener());
        timer.start();
    }

    class TimerListener implements ActionListener {
        public void actionPerformed(ActionEvent e) {
            increaseY();
        }
    }


  public void increaseY() {
        if (y > 0) {
            y--;
            repaint();
        }
    }

  /** Draw image on the panel */
  protected void paintComponent(Graphics g) {
    super.paintComponent(g);

    if (image != null) {
      g.fillRect(0, 0, 10, 660);
      g.drawImage(image, 11, y, 160, 84, this);
        }
  }
}

在此处输入代码

4

1 回答 1

1

需要注意的几件事

  • Applets不要在main()方法处开始执行。但是,如果您扩展您的with ,则可以applets使用 Java 解释器(通过使用该方法)来执行.main()classFrame

  • 拥有该init()方法很重要,因为它被浏览器或小程序查看器调用以通知该小程序它已被加载到系统中。它总是在第一次调用 start 方法之前被调用。

  • JFrame并且JApplet都是顶级容器,而不是添加applet到 中frame,我宁愿创建一个对象,JPanel因为它可以添加到JFrame/JApplet中。在您的情况下,只需添加ImagePanel到任一顶级容器。

  • I/O 流没有为applets.

  • 无法applet访问用户硬盘上的文件。

在这里阅读更多

于 2013-03-26T23:59:44.640 回答