2
我想通過閱讀某些行類似下面讀取MP3文件的詳細信息,如時間,比特率,藝術家等 我能找到一些信息:Java的I/O讀取MP3文件
File f=fc.getSelectedFile();
FileInputStream inp=null;
byte[] buffer=new byte[128];
inp= new FileInputStream(f)
inp.skip(f.length()-128);
inp.read(buffer);
}
String str=new String(buffer);
tf.setText(str);
我希望所有的細節都能清楚地提取出來。我怎樣才能做到這一點?
http://stackoverflow.com/questions/119404/time-length-of-an-mp3-file –
我如何可以手動找到一個mp3文件的長度 – dpanshu
http://www.autohotkey.com/community/viewtopic.php?t=29420 –