Tagged Questions
JSR 75 is Java ME API - PDA Optional Packages for file connection and PIM
9
votes
2answers
9k views
J2ME/Blackberry - how to read/write text file?
please give me a sample code for read/write text file in blackberry application.
2
votes
1answer
137 views
Can't access/read SIM phonebook in Nokia
am trying to access both the Phone's phonebook and SIM phonenook on Nokia 5130c-2 XpressMusic.
The app runs without errors but it only returns the numbers from the phone's Phonebook. When I list the ...
2
votes
1answer
966 views
Accessing the 'Media' directory of a Blackberry within the JDK
Trying to use JSR 75 to access media saved under the '/home/video/' directory on the device. Using Blackbery JDK 4.6.1. Single line of code throws a 'filesystem io error' exception. Which is, as ...
1
vote
4answers
205 views
Implement reading of contact from phone book Using Hashtable in J2ME
I ran into a bind whereby I had to sort the data read from the phones PIM. In doing this I lost the other to which each contact field was referenced to the telephone number because I made use of 2 ...
1
vote
0answers
160 views
Loading contact from phone book in J2ME
I implemented this code below in order to read contacts from the addressbook of the phone
The problem is, In a case when all the numbers in the phonebook are saved in the SIM it reads and displays ...
1
vote
2answers
4k views
File path for J2ME FileConnection?
I'm writing a MIDlet which needs to write file. I'm using FileConnection from JSR-75 to accomplish this.
The intention is to have this MIDlet runnning on as much devices as possible (all MIDP 2.0 ...
1
vote
2answers
207 views
Alternative ways to open a file for writing on J2ME?
I've inherited a bit of J2ME code where a single class has the following two methods in it:
public DataOutputStream getOutputStream(String filePath) throws IOException
{
return ...
1
vote
1answer
731 views
Blackberry - Adding mp3 files to an sdcard folder from application resources
My blackberry application has some mp3 files bundled with the application. I want to add these files from the app to a folder in the sdcard or a folder in my phone memory through program.
How can I ...
0
votes
0answers
54 views
How do I enable restricted api permissions in my mobile java apps?
Can I change API permissions for proprietary content
After talking with Sprint Devs, I received this answer, of course I will paraphrase
Accessing filesystem withing app = JSR-75 which is a ...
0
votes
1answer
467 views
J2ME: Crossplatform getting contacs with PIM
I have to develop solution based on getting data from address book.
Those data must be saved into text format. I coded it with Java™ Platform Micro Edition SDK 3.0.
public void getAddrBook() ...
0
votes
2answers
308 views
JSR-75 specific code on non JSR-75 devices?
What I'm trying to do
I'm coding a J2ME midlet, and I want to use JSR-75 to write files. I also want to be able to run my app on device that don't have support for JSR-75.
How I'm doing it
I found ...