如何通过 J2ME 中的扬声器播放音频
Posted
技术标签:
【中文标题】如何通过 J2ME 中的扬声器播放音频【英文标题】:How to play audio through the loudspeaker in J2ME 【发布时间】:2012-06-18 19:45:23 【问题描述】:我正在使用 JSR 135 播放音频文件。 我就是这样做的。
InputStream is = getClass().getResourceAsStream("/tone.mp3");
Player p = Manager.createPlayer(is, "audio/mp3");
p.start();
// get volume control for player and set volume to max
VolumeControl vc = (VolumeControl) p.getControl("VolumeControl");
if (vc != null)
vc.setLevel(100);
p.close();
p = null;
is.close();
is = null;
但我需要始终通过手机的扬声器播放音频。此时,如果我插入耳机,声音只会在听筒中播放。有没有办法做到这一点?
【问题讨论】:
【参考方案1】:不,没有办法实现这一点,IMO 也是如此。
【讨论】:
以上是关于如何通过 J2ME 中的扬声器播放音频的主要内容,如果未能解决你的问题,请参考以下文章