-1

我正在使用以下代码在 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 扩展名提供什么内容类型。

4

1 回答 1

0

Java ME 不支持 AFAIK .cfa 文件。浏览这些文章,

用于 Java ME 的 MMAPI

在 Java ME 中查找音频格式

于 2011-08-25T10:34:39.767 回答