Topic: 如何在应用程序中循环播放音频? |
Print this page |
1.如何在应用程序中循环播放音频? | Copy to clipboard |
Posted by: macroxmu Posted on: 2006-06-29 20:29 前提是只能使用JDK提供的包 有一种播放方法是: AudioPlayer p = AudioPlayer.player; try { AudioStream as = new AudioStream(new FileInputStream("test.au")); p.start(as); } catch (IOException e) { e.printStackTrace(); } 但是无法循环播放,找过doc没发现有类似loop的方法。 谁知道如何使播放循环进行? 虽然可以另开一个线程然后死循环进行播放,不知道有没有更好的办法? |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |