我正在使用以下代码创建一个文件并将数据写入其中:
fileName = "file:///store/home/user/myapp/groups.xml";
try {
fc = (FileConnection) Connector.open(fileName, Connector.READ_WRITE);
if (!fc.exists())
fc.create();
os = fc.openDataOutputStream();
String XMLString = "blablabla";
byte[] FinalXML = XMLString.getBytes();
os.write(FinalXML);
os.close();
fc.close();
} catch (IOException e) {
Dialog.alert(e.getMessage());
}
它在我的带有 OS6 的 bb 9700 和 9700 模拟器上运行良好。但它不适用于 9550 设备和模拟器。我得到 IOException。消息说
文件未找到
有没有人有一些巫毒魔法可以帮助我?