显示文件夹中的歌曲到 jlist
这里有人可以给我一个关于如何从文件夹中获取歌曲并将其显示到 jlist 的视图或想法吗?我不知道如何开始这样做...
谢谢你们...
can anyone here give me a view or idea on how to get the songs from a folder and displays it to jlist? i have no idea on how to start doing this...
thank you guys...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
第一步应该定义歌曲是什么以及源文件夹在哪里,之后一切就很容易了。
您需要的是类 File当然还有 Jlist。
使用文件对象,您将能够指定过滤并检索正确的文件 。
当您有文件列表时,您应该阅读此 (如何使用列表)教程。
编辑:
是什么歌?
该歌曲可能是具有特定扩展名的文件,通常是 .mp3、.wav。
因此,当我们尝试在文件夹中查找歌曲时,我们实际上是在寻找多媒体文件。
Step one should be defining what song is and where the source folder is, after that everything is easy.
What You need is class File and of course Jlist.
Using file object, you will be able to specify a filter and retrieve proper files.
When you will have list of files then you should read this (How to use Lists) tutorial.
EDIT:
What song is ?
The song might be a file that have specific extension usually this is .mp3, .wav.
So when we are trying to find songs in a folder really we are looking for multimedia files.