我如何在Java中播放声音?

编程入门 行业动态 更新时间:2024-10-19 10:24:39
本文介绍了我如何在Java中播放声音?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我希望能够在我的程序来播放声音文件。我应该在哪里看?

I want to be able to play sound files in my program. Where should I look?

推荐答案

我写了下面code,它工作正常。但我认为这只是与 .WAV 格式的作品。

I wrote the following code that works fine. But I think it only works with .wav format.

public static synchronized void playSound(final String url) { new Thread(new Runnable() { // The wrapper thread is unnecessary, unless it blocks on the // Clip finishing; see comments. public void run() { try { Clip clip = AudioSystem.getClip(); AudioInputStream inputStream = AudioSystem.getAudioInputStream( Main.class.getResourceAsStream("/path/to/sounds/" + url)); clip.open(inputStream); clip.start(); } catch (Exception e) { System.err.println(e.getMessage()); } } }).start(); }

更多推荐

我如何在Java中播放声音?

本文发布于:2023-11-14 15:15:41,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1587760.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:声音   如何在   Java

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!