Tagged Questions
4
votes
8answers
5k views
Best practice for storing large amounts of data with J2ME
I am developing a J2ME application that has a large amount of data to store on the device (in the region of 1MB but variable). I can't rely on the file system so I'm stuck the Record Management System ...
3
votes
2answers
1k views
MIDP Java implementation of SQLite DB
Are there any MIDP implementation of SQLite db available for use of sqlite db within a MIDlet, rather than using RMS. Of course, there are Floggy and OpenBaseMovil, however they are based on RMS, but ...
3
votes
5answers
560 views
How to keep RMS after installing a new version?
I have an j2me application installed on a Nokia S40. Some configuration data is stored in the RMS. Is it possible to overwrite the installed app with a new version? How to keep RMS in the new version?
...
2
votes
0answers
72 views
Problems with RMS to store persistent data
1.Problem on emulator:
I am launching my midlet app at first time is to store some data and then I am restarting it at second time is to read the stored data. It is working well in first two cases ...
2
votes
3answers
67 views
Java-ME Application in Freeze Mode
I am developing a Java-ME Based Mobile Application. Now My Requirements are like whenever I am updating one of my RMS, I want my application to be stay in a Freeze kind of mode; which means no other ...
2
votes
1answer
203 views
How do I read an RMS file from a Nokia S40 device?
I have an RMS file generated on an S40 Nokia phone - is there any way of reading this on a PC? I'm trying to debug an issue on the phone, which seems to be related to the contents of the RMS, and ...
2
votes
1answer
346 views
If the jar file of a J2ME MIDlet gets copied from one phone to another, do its records get copied too?
Apologies if this question has been asked before. After lots of searching, I could not find the answer anywhere.
I was just reading about something called a Record Management System for J2ME. This ...
2
votes
5answers
3k views
Data in J2ME RecordStore does not persist across sessions
I'm building a mobile app with J2ME, and I've found that the data I write into a RecordStore can be accessed while the program is still running but it is lost after quitting and restarting it. No ...
2
votes
2answers
737 views
Java ME object persistence
I know that Serialization (Serializable) is not available in the Micro Edition of Java.
It's kinda straight forward to save primitives like int and java.lang.String objects with the RMS.
But if I want ...
1
vote
2answers
84 views
Listing all records j2me
I want to list all records in the record store. I've declared a list:
Private List tlist = new List("Select One", List.IMPLICIT);
Also enumerated the records:
Form mainf;
Command exit = new ...
1
vote
1answer
157 views
How to write a search method include “Like” such as SQL in J2ME
Now I try to write a small method to search in j2me, it works well but I don't know how to write a method like SQL use "Like" in j2me to search recordstore doesn't need match 100% percent.
Example
...
1
vote
1answer
108 views
How do you clear the RecordStore of your midlet in Netbeans?
I find that when I try to add some new records, the already exist in the recordstore of the midlet, but I don't know where do I find the option to clear the midlet's recordstore in its emulator.
...
1
vote
1answer
138 views
Nokia Series 40 persistent storage
I have a question about persistent storage for Java applications on the Nokia Series 40 platform. Who takes care of cleaning the persistent storage (RMS) of an application when it is deleted ...
1
vote
2answers
337 views
update record in recordstore j2me
i want to know the method used to update record in recordstore in j2me. thanks....
1
vote
1answer
166 views
Data not getting saved using RMS
In my j2me app, I write data using this:
RecordStore rs = RecordStore.openRecordStore("mydb", true);
String buf = "Some text";
rs.addRecord(buf.getBytes(), 0, buf.getBytes().length);
...
1
vote
2answers
201 views
j2me Find application mode, is it idle or not
I want to send stored rms data using http connection when application is on
idle mode
so when user is not doing anything with application at that time my thread will invoke and send RMS data to ...
1
vote
1answer
413 views
Problem with RMS
I have a problem with RMS, what I need is to delete an record and move the records after level up, is there any chance to do it? I've tried to avoid this, but all in all I end up with this :(
Is ...
1
vote
1answer
201 views
how to store the data in a file in j2me..?
please can anyone tell me how to store the RMS data to file and how to modify it?
1
vote
1answer
985 views
Java Micro Edition (J2ME) - Delete element from Record Store
I have a record store which holds a list of shopping items i am currently serialising the data like so
** (inside) ItemClass **
ByteArrayOutputStream byteOutputStream = new ...
1
vote
1answer
224 views
Is it possible to open and edit 2 or more RecordStores at the same time in j2me?
I was wondering if it is possible in j2me to have 2 or more recordStores open at the same time. I basically want to be able to add/remove records from 2 different recordStores in the same execution of ...
0
votes
1answer
25 views
How to Display All The RecordStore available in Device
I am Developing a Java ME Application. Here I want to list all the RecordStore available. How can I get the names of all the RecordStore exists ?
0
votes
1answer
22 views
rms queries, find a phrase inside a text
I want to do a midlet application for save product with its bar code, product's name, product's description and price. Then it is going to be saved as it:
123123123-coca cola-soda-6.50
...
0
votes
2answers
108 views
How to search and sort in J2me (ascending or descending)
I am wondering about how to search in J2ME. I have been searching in the internet, so many result show to me, and I see in Java2s.com I got a result use RecordFilter and matches method for search in ...
0
votes
1answer
50 views
How to delete all the local database in the J2ME application
I want to refresh my J2ME application means I want to delete all the local db which the mobile contains. I know how to do above task in android application by "Clear Data" by using this we can delete ...
0
votes
2answers
115 views
How to view RMS file in J2ME?
I have J2ME app in which RMS is used as a database. I just wanted to know:
where is the Location of rms file in j2ME
How can we read it manually using any software and modify it?
I am asking this ...
0
votes
2answers
71 views
How to send image stored in RMS to server in j2me?
I want to send the image stored in the RMS to server. For that I have stored the captured image in the RMS. I can access it successfully and can show it over device, but when I used to send it to ...
0
votes
1answer
110 views
How to set record id by myself in J2ME
I have recordstore to store my data.
I know when we store data into recordstore it automatic generate a record id for each record.
But how can I set record id by myself? or how can I get record id?
...
0
votes
1answer
72 views
saving date to RMS in Java ME
I would like to save a Date object into an RMS in Java ME. The way I would like to do it is by converting the date first to some String/int/any primitive data type value that the RMS can save. I then ...
0
votes
2answers
150 views
RecordStore and photos taken from the phone
When the user takes photos with his phone I want LWUIT to get a specific photo to add to a recordstore and later retrieve that photo. How to achieve that ?
0
votes
1answer
154 views
Database and UI framework for J2ME?
I am an Android developer. I haven't developed J2ME applications before. I have a requirement in which the client needs a J2ME application which requires me to store around 10,000 (Each record would ...
0
votes
1answer
365 views
j2me delete record from recordstore
Problem:
unable to use deleteRecord() properly
Background:
I have a simple j2me application where I add various strings to the record store and try to manipulate the contents of the record store. I ...
0
votes
1answer
109 views
Java ME record store problem
I save data to Record store. If the aplication is running it works fine, but when I restart aplication data in record store is lost.
Here is my load command:
try {
int i=1;
...
0
votes
3answers
374 views
delete single line in a text file?
I have created j2me application for read write of text file
now at time of reading I read one line and send it to server. after that I want to remove that line from text file.
I am not getting how ...
0
votes
2answers
172 views
Problem in Uninstalling Application from Nokia E-72
i have created an application which stores lots of data around 100 mb in rms and application process on this data
now when i am un-installing application from Nokia e-72 some times it remove ...
0
votes
0answers
179 views
Not able to update the record in rms using floggy in j2me
I using the floggy tool to insert data in rms. And it inserted successfully. But when i try to update/delete a particular a record using floggy Migration package. It will throw exception and i not ...
0
votes
1answer
306 views
how to transfer the records in rms(j2me) to j2se through bluetooth
NOW here is the coding for j2me mobile for sending the string:
String s="hai";
try{
String url = "btspp://001F81000250:1;authenticate=false;encrypt=false;master=false";
StreamConnection ...
0
votes
1answer
207 views
Reading RMS Data of other Midlet
I want to Read RMS Data created by one midlet from second midlet
Target devise are S60 is it possible??
0
votes
1answer
144 views
how to check first value in rms is null in j2me?
RecordStore rs = RecordStore.openRecordStore("StoryDataBase1",true);
String data_to_write_in_file = ...
0
votes
1answer
146 views
Is RMS only temporary storage?
Is the Record management System in J2ME a temporary storage system? Does it vanish after the application is closed?
0
votes
1answer
196 views
J2ME Record deletion problem in RecordStore
I am using a recordstore to store some data,and each data is being shown in form of list elements.In my application,i am having a feature in which i can delete a particular list element.When i perform ...
0
votes
1answer
192 views
J2me db option, jmesql
Is jmesql better option than rms for j2me environment, Is there any limitaions using jmesql. Is rms is better when using large volume of data. What is better to use.
0
votes
1answer
242 views
how to connect to database in j2me?
Hello
I am student and developing a mobile quiz game by using j2me and netbeans6.9.I have to store the questions and answers in database and i want to connct my MIDlet to database.
Can anyone help ...
0
votes
1answer
1k views
Java Micro Edition (J2ME) - Update Record using recordstore enumeration
I have a record store of items which have (name, quantity, owner, status)
Now when the user triggers an event I want to set the status of all items in my RecordStore with "purchased"
re = ...
0
votes
3answers
1k views
Using RecordStore in Java J2ME
I am currently doing some J2ME development. I am having a problem in that a user can add and remove elements to the record store, and if a record gets deleted, then that record is left empty and the ...
0
votes
4answers
981 views
Store data with MIDP RMS and retrieve in PC
How can I retrieve data stored using MIDP's RMS? I would like to collect some data in the handset and then be able to process it in the PC's application.
If I can't do it using RMS, is there a way to ...
0
votes
0answers
906 views
Why can't I update my J2ME RecordStore?
I basically want my Midlet the ability to edit records.
I have this code
the information is added as follows
protected void searchForNameToEdit()
{
Editrecord.deleteAll();
try
...
0
votes
3answers
950 views
Store large amounts of data in RMS
I need to store large amount of data using RMS API through J2ME.
How can I store that multiple-column data, given they must be hardcoded so I need to store those multiple columns and rows data.
How ...
-1
votes
1answer
52 views
Delete record recordstore
So i have a list and when the user selects an item and clicks delete i want it to delete the record from the record store, here is the code i have which doesn't work:
i = list.getSelectedIndex();
...
-2
votes
3answers
125 views
record store in j2me
I have 2 forms and the data should be stored in the record store only after filling all the fields in both the forms and if we switch from one form to another the fields in the form should contain ...