在java中,发出选择性的嘟嘟声

发布于 2024-08-21 18:08:50 字数 88 浏览 2 评论 0原文

我试图在小程序启动时显示几个矩形,并添加几种颜色...我已经有了蜂鸣音频文件,但据我所知,它将在整个程序中播放。有人可以告诉我如何让只有单击矩形时才发出蜂鸣声吗?

I am trying to make several rectangles show up when the applet is started with a couple colors added in...I already have the beep audio file but from what i know, it will play throughout the whole program. Can someone please tell me how to make the beep sound occur only when the rectangles are clicked?

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

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

发布评论

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

评论(1

万劫不复 2024-08-28 18:08:50

Applet 中直接有一些简单的音频 API,您可以像这样使用:

public class MyApplet extends Applet
{
    protected AudioClip beep;
    protected relativeBeepPath = "mybeep.wav";

    public void init()
    {
        //....
        try {
            beep = getAudioClip( new URL( getDocumentBase(), relativeBeepPath ) );
        } catch( Exception ex ) {
            ex.printStackTrace();
        }
    }

    public void myRectangleWasClicked()
    {
        if( beep != null )
            beep.play();
    }
}

There is some simple Audio API directly in Applet that you can use like this:

public class MyApplet extends Applet
{
    protected AudioClip beep;
    protected relativeBeepPath = "mybeep.wav";

    public void init()
    {
        //....
        try {
            beep = getAudioClip( new URL( getDocumentBase(), relativeBeepPath ) );
        } catch( Exception ex ) {
            ex.printStackTrace();
        }
    }

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