Questions tagged [midlet]

MIDlet is an application that uses the Mobile Information Device Profile (MIDP) of the Connected Limited Device Configuration (CLDC) for the Java ME environment

263 questions
2
votes
1 answer

In Java ME how do I change the direction of the stuff displayed to go right-to-left just for my MIDlet?

My Java ME MIDlet allows its user to change the language of the Midlet. My code handles the internationalization, and it works fine for left-to-right languages. But when the user changes the language to Right-To-Left language, the correct strings…
inor
  • 2,781
  • 2
  • 32
  • 42
2
votes
1 answer

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 without any exception. However I am restarting it…
2
votes
1 answer

SMS Receiving Port in J2ME Mobile Application

Can you please explain following doubts? When my j2me application is listening for sms on specific port, will it run as a server or client? Because if the two application run on same port, who will receive the sms? And please suggest me, which…
Pavunkumar
  • 5,147
  • 14
  • 43
  • 69
2
votes
1 answer

How to install a MIDlet on a SonyEricsson phone directly in the Organizer folder

This question refers strictly to Sony Ericsson phones running Java Platform 8 or higher. It is possible to instruct the AMS to install the application in one of the folders Applications or Games. But I want to install the MIDlet in a different…
sonydev
2
votes
0 answers

j2me PushRegistry.RegisterAlarm and code signing

I am developing an app on Nokia C2-00 in which I am using push registry for auto start of app on some fixed time ex. PushRegistry.registerAlarm("ClassName", alarm.getTime()); this is working perfect and it starts app on that time. But this is…
Mihir Palkhiwala
  • 2,586
  • 3
  • 37
  • 47
2
votes
2 answers

How to use stoppable http connection using lwuit?

I want to have a http connection in my J2ME application using Lwuit which will have a timeout, can manually stop the request with a button, and a loading dialog while it is processing. I tried thread for HTTP connection but even when I try to…
aNi
  • 1,359
  • 11
  • 17
2
votes
2 answers

how to convert j2me running lwuit to android?

How can i convert a J2ME application which is using lwuit library to an android apk ? I tried to convert using mircoemulator but when I start the application it shows error and exits.
aNi
  • 1,359
  • 11
  • 17
2
votes
2 answers

How to ask the confirm alert while delete or uninstall the midlet application on mobile?

I need to ask the confirm alert while user delete the my Java ME application on mobile. Is it possible? I want to ask like Sure to delete this application? This question is YES/NO type. If user press yes, automatically open the our survey page on…
bharath
  • 14,283
  • 16
  • 57
  • 95
2
votes
1 answer

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. Any help appreciated, Ted
Flethuseo
  • 5,969
  • 11
  • 47
  • 71
2
votes
1 answer

how to get max available heap size by phones in j2me?

Because of heap size limitation, my Midlet needs to act in different way for different heap size. for instance, it should load more or less bitmap fonts.
abolhassan
  • 21
  • 1
  • 2
2
votes
1 answer

Blackberry Midlet Install Notify

I want to be notified on Install/Delete of my blackberry app(cod). Something similar to the Midlet-Install-Notify JAD property. For now, it seems blackberry doesn't support this JAD property. Is there an alternative for blackberry? If not are there…
Akintayo Olusegun
  • 917
  • 1
  • 10
  • 20
2
votes
2 answers

how to install jar file in the wireless toolkit emulator using command prompt in j2me?

is their any way so that i can install .jar and .jad file in emulator... through command prompt... i have written this in the command prompt C:/WTK2.5.2_01/bin eumlator -XDescriptor: C:/Documents and…
Sourabh
  • 5,170
  • 9
  • 30
  • 41
2
votes
2 answers

How to run two Java ME emulators concurrently on Mac OSX

I'm developing a mobile application in Netbeans, but I'm running into problems when testing communication using SMS. In order to test this, I obviously need two emulators running, which I'm aware should be as easy as running the project twice, but…
Jim
  • 713
  • 1
  • 6
  • 23
2
votes
1 answer

Is it possible to use SOCKETS, DATAGRAMS to start a MIDP 2.0 application via Push Registry?

I am trying to get my cell app to work using the push registry technology. According to the specs you should be-able to use SOCKETS, DATAGRAMS or SMS. But I always get an IOException when calling registerConnection() when dynamical registring an…
Sydwell
  • 4,954
  • 1
  • 33
  • 36
2
votes
3 answers

Calculate HTTPS POST Request size

I have a middlet that sends data to a servlet. Anyone knows how can I calculate the size of request of the middlet in a servlet? I'm tring to sum of request header + request size + certificate size Is it correct? With this I'm trying to recreate the…
iberck
  • 2,372
  • 5
  • 31
  • 41
1 2
3
17 18