我正在使用以下代码在 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);
}
at comment // #LINE 1 我们必须给出内容类型(在此类型是用于 .wav 文件)
我的问题是我应该为声音文件 .caf 扩展名提供什么内容类型。