J2ME中如何读取手机内存和存储卡中的文件
我正在尝试在 J2ME 中创建一个音乐播放器。我想从手机内存和存储卡中读取所有 mp3 文件并将其添加到列表中。如何检索这些 .mp3 文件?
I am trying to create a music player in J2ME. I want to read all mp3 files from phone memory and memory card and add it to list. How to retrieve these .mp3 files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
阅读此文档来浏览文件和文件夹
以读取存储卡中的文件,
在许多设备中,您可以通过 E:\
进行搜索
对于手机内存,您可以通过 C:\ 进行搜索
,请参阅以下链接以获取帮助
http: //www.java2s.com/Code/Java/J2ME/FileConnection.htm
http://www.coderanch.com/t/230849/JME/移动/文件浏览-ME
Read this document for go through files and folders
for reading files in memory card,
In many device you can search by E:\
and for phone memory you can search by C:\
See following links for help
http://www.java2s.com/Code/Java/J2ME/FileConnection.htm
http://www.coderanch.com/t/230849/JME/Mobile/file-browse-ME