⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cliptest.java

📁 Developing Games in Java 源代码
💻 JAVA
字号:
import java.io.File;
import javax.sound.sampled.*;

/**
    An example of loading and playing a sound using a Clip.
    This complete class isn't in the book ;)
*/
public class ClipTest {

    public static void main(String[] args) throws Exception {

        // specify the sound to play
        // (assuming the sound can be played by the audio system)
        File soundFile = new File("../sounds/voice.wav");
        AudioInputStream sound =
            AudioSystem.getAudioInputStream(soundFile);

        // load the sound into memory (a Clip)
        DataLine.Info info = new DataLine.Info(Clip.class,
            sound.getFormat());
        Clip clip = (Clip)AudioSystem.getLine(info);
        clip.open(sound);

        // due to bug in Java Sound, explicitly exit the VM when
        // the sound has stopped.
        clip.addLineListener(new LineListener() {
            public void update(LineEvent event) {
                if (event.getType() == LineEvent.Type.STOP) {
                    event.getLine().close();
                    System.exit(0);
                }
            }
        });

        // play the sound clip
        clip.start();
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -