The file-connection tag has no wiki summary.
1
vote
0answers
39 views
Filesystemerror(12) when opening App
When I am opening app, sometimes it is not able to access the database and treat as there is no database available in the SD card.
This issue is not generated at the first launch of App. It is ...
7
votes
2answers
109 views
Accessing the attributes of a file connection created via file()
I'm creating a file connection via path <- file("C:/test.txt") and when printing the object associated to the connection I can see the connection's "attributes":
> path
description ...
0
votes
1answer
157 views
Delete files if the user uninstall the application in Blackberry
I need to store some data in my Blackberry application so i'm using files,i'm storing these files in the internal memory of the device , but if i uninstalled the application i need these files to be ...
3
votes
1answer
1k views
Reading Content from File in J2ME
I am trying to read the content of a file but it seems not to work. I surfed the net and found different implementations as shown(read(), read2(), readLine()) but each time a run the codes they all ...
0
votes
1answer
358 views
SD Card's Free Size
I want to check the free size available on My Device's SD Card. I know FileConnection API. How can I check the free size of the SD Card ?
2
votes
2answers
89 views
How can I avoiding API Access alerts in WTK
I have made a Home - Made Nokia 5800 emulator in my WTK 2.5.1, by converting on of the WTK's devices.
In my program, i'm using FileConnection.
When a call made to this APi, an alert been displayed and ...
0
votes
2answers
1k views
j2me fileconnection java.io.IOException: Root is not accessible
FileConnection c = (FileConnection) Connector.open("file:///c:/myfile.txt",Connector.READ_WRITE);
if (c.exists())
{
System.out.println("exist");
}
...
3
votes
1answer
6k views
how to read/write text file in j2me
i want to know how to read and write text to a .txt file in j2me help me thanks...
