将音频文件存储在数据库中

时间:2010-07-02 10:53:07

标签: android audio android-sqlite

我正在开发一个应用程序。我需要使用至少400个音频文件,可以播放一些相应的文本。我的问题是哪种方法是最佳和优化的方法?

一种解决方案是将所有音频文件放在资源文件夹中并从那里引用。这将永远不是一个可行的解决方案,因为应用程序的大小会增加有没有办法将音频文件转换为某种格式并转储到SQLite数据库并灵活地检索它们?如果是这样,我有什么选择?

5 个答案:

答案 0 :(得分:4)

将文件存储为SQLite数据库中的BLOB不会为您节省任何空间而不是将它们存储为文件。如果这些文件不是要与任何动态数据相关联,我只需将它们放在资源文件夹中,这样就可以将它们编译到APK中,如果它们位于数据库中,可能会更快地检索它们。 / p>

答案 1 :(得分:4)

尝试以下代码......它存储给我.....

    @Override
    public void onClick(View arg0) {

           SQLiteDatabase myDb;       
           String MySQL;
           byte[] byteImage1 = null; 
           byte[] byteImage2 = null;
           MySQL="create table emp1(_id INTEGER primary key autoincrement, sample TEXT not null, picture BLOB);";
           myDb = openOrCreateDatabase("Blob List", Context.MODE_PRIVATE, null);
           myDb.execSQL(MySQL);
           String s=myDb.getPath();
           textView.append("\r\n" + s+"\r\n");       
           myDb.execSQL("delete from emp1");
           ContentValues newValues = new ContentValues();
           newValues.put("sample", "HI Hello");


        try
        {
        FileInputStream instream = new FileInputStream("/sdcard/AudioRecorder/AudioRecorder.wav"); 
        BufferedInputStream bif = new BufferedInputStream(instream); 
        byteImage1 = new byte[bif.available()]; 
        bif.read(byteImage1); 
        textView.append("\r\n" + byteImage1.length+"\r\n"); 
        newValues.put("picture", byteImage1); 

        long ret = myDb.insert("emp1", null, newValues); 
        if(ret<0) textView.append("\r\n!!! Error add blob filed!!!\r\n");
        } catch (IOException e) 
        {
            textView.append("\r\n!!! Error: " + e+"!!!\r\n");   
        }


        Cursor cur = myDb.query("emp1",null, null, null, null, null, null);
        cur.moveToFirst();
        while (cur.isAfterLast() == false)
        {
            textView.append("\r\n" + cur.getString(1)+"\r\n");
            cur.moveToNext();
        }
    ///////Read data from blob field////////////////////
        cur.moveToFirst();
        byteImage2=cur.getBlob(cur.getColumnIndex("picture")); 
        bmImage.setImageBitmap(BitmapFactory.decodeByteArray(byteImage2, 0, byteImage2.length));
        textView.append("\r\n" + byteImage2.length+"\r\n"); 

        cur.close();

        myDb.close();


    }
});

答案 2 :(得分:1)

如果我错了,任何人都会纠正我,但SQLite对总行数有限制&lt; 1024KB。如果您的所有音频文件足够小,您可以将它们存储为BLOB。

答案 3 :(得分:1)

将声音文件存储在数据库中的主要原因可能是产品线方法。您可以通过修改数据库而不是触及代码来开发许多类似的应用程序。

我不评论应用程序的大小,因为有关于它的评论,我不看它。

是。您可以将小型声音文件存储在sqlite数据库中作为blob字段。它运作良好。首先将数据存储在数据库中,然后检索它并将其放入临时文件中。这样,您就可以将声音文件存储在数据库中。

检查一下:

soundDataFile = File.createTempFile( "sound", "sound" );
FileOutputStream fos = new FileOutputStream( soundDataFile );
fos.write( soundData );
fos.close();

mediaPlayer.reset();
mediaPlayer.setDataSource( soundDataFile.getAbsolutePath() );
mediaPlayer.prepare();
mediaPlayer.start();

答案 4 :(得分:0)

将文件存储在sql lite db中的动机是什么?我没有看到在数据库中存储文件路径以及文件系统上的实际文件有多大好处......