在j2me异常中无法访问Root

时间:2013-08-05 11:23:38

标签: java-me j2mepolish

FileConnection fc = (FileConnection)Connector.open("file:///C:/products.dat",Connector.READ_WRITE);
if(!fc.exists())
{
    fc.create();
    OutputStream os=fc.openOutputStream();
    byte[] b=response.toString().getBytes();
    os.write(b);
    os.flush();
    fc.close();
}

1 个答案:

答案 0 :(得分:2)

您提供的路径似乎不是有效的根。 要检查设备中所有有效根值的列表,请调用FileSystemRegistry的listRoots()方法。

其他原因可能是由于某种原因,FileSystemRegistry无法访问该路径(磁盘错误或读取受保护)。