坦克大戰遊戲源碼

时间:2016-12-31 05:23:48
【文件属性】:
文件名称:坦克大戰遊戲源碼
文件大小:577KB
文件格式:ZIP
更新时间:2016-12-31 05:23:48
坦克大戰 package com.test1; import java.io.*; import javax.sound.sampled.*; public class Test { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub AePlayWave apw=new AePlayWave("./111.wav"); apw.start(); } } //播放声音的类 class AePlayWave extends Thread { private String filename; public AePlayWave(String wavfile) { filename = wavfile; } public void run() { File soundFile = new File(filename); AudioInputStream audioInputStream = null; try { audioInputStream = AudioSystem.getAudioInputStream(soundFile); } catch (Exception e1) { e1.printStackTrace(); return; } AudioFormat format = audioInputStream.getFormat(); SourceDataLine auline = null; DataLine.Info info = new DataLine.Info(SourceDataLine.class, format); try { auline = (SourceDataLine) AudioSystem.getLine(info); auline.open(format); } catch (Exception e) { e.printStackTrace(); return; } auline.start(); int nBytesRead = 0; byte[] abData = new byte[512]; try { while (nBytesRead != -1) { nBytesRead = audioInputStream.read(abData, 0, abData.length); if (nBytesRead >= 0) auline.write(abData, 0, nBytesRead); } } catch (IOException e) { e.printStackTrace(); return; } finally { auline.drain(); auline.close(); } } }

网友评论

  • 用到了一部分,不错!