我应该使用什么内容类型.cfa声音文件与j2me一起玩?

时间:2011-08-25 10:03:51

标签: audio java-me audioformat

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

1 个答案:

答案 0 :(得分:0)

Java ME不支持AFAIK .cfa文件。阅读这些文章,

MMAPI for Java ME

Finding audio format in Java ME