3

我正在尝试从我的 android 设备读取音乐文件的内容,尽管我已经能够检索文件并播放它们,但我需要读取音乐文件并将它们转换为字节数组。有人可以帮助我:以下是我的代码:

 public void retrieve_music_files() {
     music_column_index =   musiccursor.getColumnIndexOrThrow(MediaStore.Audio.Media.DATA); 
     musiccursor.moveToPosition(position); 
     String filename = musiccursor.getString(music_column_index);
     Cursor musiccursor;
     MediaPlayer mMediaPlayer;
     int music_column_index;

     try {
         if (mMediaPlayer.isPlaying()) {
             mMediaPlayer.reset();
         }
         mMediaPlayer.setDataSource(filename);
         mMediaPlayer.prepare();
         mMediaPlayer.start();
     } catch (Exception e) {
     }    
}
4

2 回答 2

1

我为我的项目使用了以下代码。希望这对你有用。

String musicFilePath="your music file path";
byte[] fileByteArray;
File file = new File(musicFilePath);
fileByteArray = new byte[(int)file.length()];
于 2017-04-17T11:10:10.890 回答
0

您应该能够按照此链接中的代码将任何文件转换为字节数组。

http://www.mkyong.com/java/how-to-convert-file-into-an-array-of-bytes/

于 2014-05-21T01:54:36.347 回答