Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
974 views
in Technique[技术] by (71.8m points)

android - Asset Manager, OpenFd?

I have a file in my assets folder I wish to access, I do so by:

AssetFileDescriptor fileSound = am.openFd("myfilepathetc/mymp3.mp3");

But I get the error:

This file can not be opened as a file descriptor; it is probably compressed

After some googling it appears that I need to add an extension to my file, such as .mp3 as Android compresses stuff in the assets folder unless its of a format already compressed, the only problem is, my file is already an mp3 and it still wont open.

Is there a way of uncompromising it? Or does anyone have a better way to access an mp3 from assets, please note I do not want to access it from the raw folder for reasons i wont bother going into.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Why don't you use this instead :

private void playAudioSound() {
    try {
        AssetFileDescriptor afd = context.getAssets().openFd("sounds/jad0005a.wav");
        MediaPlayer player = new MediaPlayer();
        player.setDataSource(afd.getFileDescriptor());
        player.prepare();
        player.start();
    } catch (IOException e) {
        e.printStackTrace();
    }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...