- 授权协议: Apache
- 开发语言: C# .NET
- 操作系统: Windows
- 软件首页: http://id3.codeplex.com/
软件介绍
ID3.NET 是一组用来从 MP3 文件中读取、修改和写入 ID3 和 Lyrics3 信息的 .NET 库。要求 .NET Framework 4 或者更高版本支持,支持 Windows Phone 7 和 Metro。
示例代码:
string[] musicFiles = Directory.GetFiles(@"C:\Music", "*.mp3"); foreach (string musicFile in musicFiles) { using (var mp3 = new Mp3File(musicFile)) { Id3Tag tag = mp3.GetTag(Id3TagFamily.FileStartTag); Console.WriteLine("Title: {0}", tag.Title.Value); Console.WriteLine("Artist: {0}", tag.Artists.Value); Console.WriteLine("Album: {0}", tag.Album.Value); } }
Effective Java
Joshua Bloch / Addison-Wesley Professional / 2018-1-6 / USD 54.99
The Definitive Guide to Java Platform Best Practices—Updated for Java 9 Java has changed dramatically since the previous edition of Effective Java was published shortly after the release of Jav......一起来看看 《Effective Java》 这本书的介绍吧!
