我愿意作一个简单的应用,即根据以下网址将数据储存在文本档案中: enter/a>。 但我面临令人沮丧的例外。
这是我的法典:
private boolean saveFile(String fileName, String fileContent) {
DataOutputStream os = null;
FileConnection fconn = null;
try {
fconn = (FileConnection)Connector.open(fileName,Connector.READ_WRITE);
if (!fconn.exists())
fconn.create();
os=fconn.openDataOutputStream();
String myString=fileContent;
os.write(myString.getBytes());
os.close();
fconn.close();
} catch (IOException e) {
// TODO Auto-generated catch block
Dialog.alert(e.toString());
return false;
}
return true;
}
private String getFileName() {
return "file:///SDCard/BlackBerry/documents/text.dat";
}
这是我得到的例外:
net.rim.device.api.io.file.FileIOException: File system error
该《行动计划》指出:
IOException - if the firewall disallows a connection that is not btspp or comm.
我不知道这是否有用。
I am using BlackBerry JRE 4.6.1 and a BlackBerry 8900 Simulator. Hope you guys can help me out.