我使用以下代码在j2me中播放声音文件
try
{
String ctype_1 = "audio/x-wav";// #LINE 1
temp = Manager.createPlayer(this.getClass().getResourceAsStream(audioFileString),ctype_1 );
if(temp != null){
temp.setLoopCount(1);
temp.realize();
temp.prefetch() ;
return temp;
}
}
catch(Exception ex)
{
ex.printStackTrace();
System.out.println("MediaException in my sound ==>"+ex);
}
在评论// #LINE 1我们必须提供内容类型(在此类型是.wav文件)
我的问题是我应该为声音文件.caf扩展名提供什么内容类型。
答案 0 :(得分:0)