需要这个SDCard代码的帮助。我正在使用这段代码 但它的工作随机准确。
boolean sdCardExist() {
boolean sdCardPresent = false;
Enumeration e = FileSystemRegistry.listRoots();
while (e.hasMoreElements())
{
final String root = (String)e.nextElement();
//System.out.println("=================>root: " + root);
if(root.equalsIgnoreCase("sdcard/"))
{
sdCardPresent = true;
}
else {
}
}
return sdCardPresent;
}
我正在使用9860设备进行调试,其中有一个SD卡。