简单的 Java Sound Applet 不起作用!!! ARG!

发布于 2024-08-04 10:43:21 字数 412 浏览 3 评论 0原文

import java.applet.*;

/**
 * SoundApplet.java - a simple applet that plays the "gong.au" sound file.
 */
public class AppletGame extends Applet
{

  public void init()
  {
    super.init();
    resize(0,0);

    AudioClip gong = getAudioClip(getDocumentBase(), "test0.au");
    gong.play();
  }
}

在 Eclipse applet 查看器中,它会加载但不播放声音。在 html 中,它无法加载并显示启动未初始化。我尝试在 init 之外调用它,并且有人帮助我!

import java.applet.*;

/**
 * SoundApplet.java - a simple applet that plays the "gong.au" sound file.
 */
public class AppletGame extends Applet
{

  public void init()
  {
    super.init();
    resize(0,0);

    AudioClip gong = getAudioClip(getDocumentBase(), "test0.au");
    gong.play();
  }
}

In Eclipse applet viewer it loads and doesn't play sound. In html it doesn't load and says start not initalized. I've tried calling it outside of init, and all that someone help me!!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

錯遇了你 2024-08-11 10:43:21

您是否尝试过稍长的示例程序,例如 http://www.iam。 ubc.ca/guides/javatut99/sound/playing.html

Have you tried slightly longer example programs like http://www.iam.ubc.ca/guides/javatut99/sound/playing.html ?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文