Tagged Questions

in Java ME MIDP, RMS stands for Record Management System API, a persistent storage mechanism

learn more… | top users | synonyms

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
3answers
294 views

Android code obfuscation and secure android application from piracy

Presently i am a newbie in android development .. I need to develop a secured android application so that i can save it from getteg pirated. For security of application i have used RMS in J2ME.In ...
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
73 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
204 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
2answers
129 views

Architecting BlackBerry CRM / SFA applications

I am in process to start developing a Blackberry application (Proof Of Concept) on the lines of SalesForce and SalesNow CRM. I am a web developer with skills on LAMP technologies with a limited ...
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
738 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
86 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
109 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
174 views

Integration of magento with Microsoft Dynamics RMS

Any one have done integration of magento with Microsoft Dynamics RMS? How magento access the RMS tables? Thanks in advance..
1
vote
1answer
130 views

How to Process Credit Card Purchases Through C# Web Service

We are designing an iPhone app for a client and need to create a store front where users make purchases. I have everything figured out about the app, except how to process the credit card information ...
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
340 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
414 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
202 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
988 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
225 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
3answers
36 views

How to best determine volume of a signal?

I want to determine the volume of an audio signal. I have found two options: Compute Root Mean Squared of the amplitude find the maximum amplitude Are there advantages to using #1 or #2? Here ...
0
votes
0answers
12 views

How to obtain an amplitude value (RMS, etc) of music stream?

Sorry in advance for butchering the format. And thank you for reading/helping. I'm researching noise and personal media players (android powered phones). I need to return a value that correlates to ...
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
0answers
35 views

Passing null-terminated unicode string to method DRMSetRevocationPoint

I'm using Microsoft's AD RMS SDK to perform document encryption and revocation of user rights. To perform revocation I need to use the method DRMSetRevocationPoint . I need to pass in the Public Key ...
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
0answers
108 views

Determine Amplitude of Sound From Microphone

I am trying to determine the amplitude of an instrument (trumpet, guitar, etc.) that is being recorded using the Java Sound API and display an amplitude vs. time graph. I haven't had much experience ...
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
151 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
0answers
40 views

Creating a WebService from NITROSELL and RMS by Microsoft Dynamics

I have a client that wants us to take his existing architecture (a eCommerce website hosted by NITROSELL and RMS by Microsoft), and create an iPhone app around it. We are the iPhone experts, and we ...
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
367 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
1answer
217 views

Can We use RecordStore database with Android?

Can We use RecordStore database with Android ?
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
307 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 ...

1 2