首先需要知道的是,MP3檔案的檔案資訊都放在檔案最後的128個位元組裡面,這128個位元組分別儲存的資訊如下:
char Header[3]; /* 標籤頭必須是"TAG"否則認為沒有標籤 */
char Title[30]; /* 標題 */
char Artist[30]; /* 作者 */
char Album[30]; /* 專集 */
char Year[4]; /* 出品年代 */
char Comment[28]; /* 備忘 */
char reserve; /* 保留 */
char track;; /* 音軌 */
char Genre; /* 類型 */
代碼:
public class ReadMP3 {
/**
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
// TODO Auto-generated method stub
String path = System.getProperty("user.dir")+"/images/wenbie.mp3";
readMp3ID3V1(path);
}
public static void readMp3ID3V1(String path) throws Exception{
byte[] buf = new byte[1024];
File file = new File(path);
FileInputStream fis = new FileInputStream(file);
/*---讀取MP3檔案尾部資訊,並顯示----*/
long size = file.length();
System.out.println("檔案總位元組數:"+size);
fis.skip(size-128);
//標誌位TAG:3 byte
fis.read(buf,0,3);
String tag = new String(buf,0,3);
System.out.println( "ID3V1: "+tag);
//歌曲名稱 30 byte
fis.read(buf,0,30);
String songname = new String(buf,0,30);
System.out.println( "song name: "+songname);
//歌手名稱 30 byte
int len = fis.read(buf,0,30);
String songername = new String(buf,0,len);
System.out.println( "songer name: "+songername);
//專輯名稱 30 byte
len = fis.read(buf,0,30);
String albumname = new String(buf,0,len);
System.out.println( "album name: "+albumname);
//年代 4 byte
fis.read(buf,0,4);
String year = new String(buf,0,4);
System.out.println( "year : "+year);
//comment 30 byte
fis.read(buf,0,28);
len = fis.read(buf,0,28);
String con = new String(buf,0,len);
System.out.println( "comment: "+con);
//genre 1 byte
fis.read(buf,0,1);
System.out.println( "Genre: "+buf[0]);
fis.close();
}
}
我讀取的檔案位於與src平行目錄的images下。
運行結果為:
檔案總位元組數:4291383
ID3V1: TAG
song name: 吻別
注意:有些MP3檔案並沒有嚴格按照ID3V1的資料結構來儲存資訊,所以,有可能只能讀取到部分資訊。可以用UltraEdit開啟MP3檔案來查看相信的儲存資訊。