02-15-2013 08:03 AM
02-15-2013 08:20 AM
What don't you understand?
02-16-2013 04:10 AM
02-16-2013 04:10 AM
02-16-2013 08:22 AM
1) Open Connection
FileConnection fconn = (FileConnection)Connector.open(fileURL);
2) Open Stream related to that connection
DataOutputStream out = fconn.openDataOutputStream();
3) Close Stream
out.close();
4) Close Connection
fconn.close();
02-16-2013 05:17 PM
02-16-2013 07:16 PM
It seems I have been commenting negatively on my own code! I'd like to say that the code I supplied earlier in this Thread is not how I would write this now, for the reasons given.
But how do we move on to help Airoh12
This Thread should stop. Airoh12, please start a new Thread with your specific problem.
But if your problem is simply that you do not understand the code given here:
http://supportforums.blackberry.com/t5/notificatio
then I recommend that you review it again, use the API doc, and your Java course notes or book, and work through figuring it out.
If you are having a problem with the file system running out of resources, please post your own code in your new Thread.
Cheers