3
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();
}
4

1 回答 1

2

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

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

于 2013-08-07T06:18:50.597 回答