如何使用J2ME获取文件路径或当前工作目录?
答案 0 :(得分:2)
是的可能。使用以下代码
Enumeration drives = FileSystemRegistry.listRoots();
System.out.println("The valid roots found are: ");
while(drives.hasMoreElements()) {
String root = (String) drives.nextElement();
System.out.println("\t"+root);
}
有关详细信息,请参阅此文章Getting Started with the FileConnection APIs.