简体   繁体   English

如何向Java程序添加声音

[英]How can I add sound to a java program

I have been trying to write a basic 'Jeopardy' game in java, and right now I'm trying to add sound to play when the player get's an answer right or wrong. 我一直在尝试用Java编写一个基本的“ Jeopardy”游戏,而现在我正尝试添加声音,以便当玩家得到对或错的答案时进行播放。 I have tried to add the sound (placing the sound file in the bin folder and using the code below), but when I try to play the file there is no sound. 我试图添加声音(将声音文件放置在bin文件夹中并使用下面的代码),但是当我尝试播放文件时没有声音。 There is no null pointer exception. 没有空指针异常。

public class Overview{

static AudioClip right, wrong;

//start the game
    public static void guiApp(){

    right = Applet.newAudioClip(Jeopardy.class.getResource("correct.wav"));
    wrong = Applet.newAudioClip(Jeopardy.class.getResource("wrong.wav"));

    right.play();

    intro = new Intro();
    intro.start();

    }

    public static void main (String[ ] args)
    {
    javax.swing.SwingUtilities.invokeLater (new Runnable ( )
    {
        public void run ( )
        {
            guiApp();
        }
    }
    );
    }

}

The following is essentially what is happening in the method called: 以下本质上是调用的方法中发生的事情:

public class Intro{

    public Intro(){

    }

    public void start(){
        JFrame frame = new JFrame();

        frame.setSize(100, 100);
        frame.setVisible(true);
    }
}

This is something that i use to play sound. 这是我用来播放声音的东西。

import java.io.File;
import java.io.IOException;

import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.DataLine;
import javax.sound.sampled.LineUnavailableException;
import javax.sound.sampled.SourceDataLine;

public class SoundPlayer extends Thread
{
 private static final int BUFFER_SIZE = 128000;
 private static File soundFile;
 private static AudioInputStream audioStream;
 private static AudioFormat audioFormat;
 private static SourceDataLine sourceLine;

 private String file;

 public static String turn = "data/bell.wav"; //bell sound for black jack when it is your turn (played once each turn)

 /**
  * Plays the sound of the sent file name
  * @param file Audio File's path
  */
 public SoundPlayer(String file)
 {
     super("SoundPlayer");
     this.file = file;
     start();
 }

 public void run()
 {
     String strFilename = file;

     try {
         soundFile = new File(strFilename);
     } catch (Exception e) {
         e.printStackTrace();
         System.exit(1);
     }

     try {
         audioStream = AudioSystem.getAudioInputStream(soundFile);
     } catch (Exception e){
        e.printStackTrace();
        System.exit(1);
     }

     audioFormat = audioStream.getFormat();

     DataLine.Info info = new DataLine.Info(SourceDataLine.class, audioFormat);
     try {
         sourceLine = (SourceDataLine) AudioSystem.getLine(info);
         sourceLine.open(audioFormat);
     } catch (LineUnavailableException e) {
         e.printStackTrace();
         System.exit(1);
     } catch (Exception e) {
         e.printStackTrace();
         System.exit(1);
     }

     sourceLine.start();

     int nBytesRead = 0;
     byte[] abData = new byte[BUFFER_SIZE];
     while (nBytesRead != -1) {
         try {
             nBytesRead = audioStream.read(abData, 0, abData.length);
         } catch (IOException e) {
             e.printStackTrace();
         }
         if (nBytesRead >= 0) {
             @SuppressWarnings("unused")
             int nBytesWritten = sourceLine.write(abData, 0, nBytesRead);
         }
     }
     sourceLine.drain();
     sourceLine.close();
     this.stop();
 }

public static void main(String[] args)
{
}

}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM