是否可以使用J2me获取存储卡中文件的路径?

时间:2011-09-07 07:30:17

标签: java-me

如何使用J2ME获取文件路径或当前工作目录?

1 个答案:

答案 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.