//目的:列出mp3的一些标签信息
//作者:李艳庆 【程序编程相关:xp设置家庭或小型办公网络(网上邻居)的】 【推荐阅读:批量创建win帐号的脚本程序.】using system; 【扩展信息:Borland C++ Builder 】 using system.io;namespace mp3infons
{ class mp3info { struct mp3infostruct { public string mp3flag; public string title; public string singer; public string album; public string year; public string comment; } private string mp3file; mp3infostruct mp3struct; public mp3info(string mp3name) { mp3file = mp3name; mp3struct = new mp3infostruct(); } public bool readmp3info() { bool isset=false; byte[] b = new byte[128]; try { filestream fs = new filestream(mp3file, filemode.open); fs.seek(-128, seekorigin.end); ... 下一页