const int seekpos = 128;
int rl = 0;
byte[] info = new byte[seekpos];
rl = stream.read(info,0,seekpos);
fs.close();
stream.close();
return info;
}
再对上面返回的字节数组分段取出,并保存到mp3info结构中返回。