MIDlet is an application that uses the Mobile Information Device Profile (MIDP) of the Connected Limited Device Configuration (CLDC) for the Java ME environment
Questions tagged [midlet]
263 questions
0
votes
1 answer
Netbeans Midlet Screen Flow Auto-Organize
I'm designing this JME application for a Nokia phone and when designing the MIDlet screen flow, my Netbeans is now bunching up all of the forms I designed on top of each other and not in some kind of easy to see diagram. Is there any button or…

Steven
- 691
- 3
- 10
- 26
0
votes
1 answer
How to call Midlet class after button click in j2me?
When i click on button in first midlet class i need to redirect to next midlet Class. How to do this
if(sb.toString().equals("SUCCESS")){
Alert success = new Alert("Login Successfully",
"Your Login Process is…

User
- 1,251
- 1
- 14
- 19
0
votes
1 answer
Writing in a file located in a Midlet Java ARchive
I have planned to develop a JME midlet.
I want to include a text file in the Java ARchive.
Each line in the text file will contain comma-separated strings.
The last string in a line will be a flag.
I want my midlet to read the text file.
I have…

user1139666
- 1,687
- 4
- 24
- 45
0
votes
2 answers
Midlet is not abstract and does not override abstract method
I am getting following message whenever I try to implement CommandListener. Please let me know what I need do?
Midlet is not abstract and does not override abstract method
commandAction(Command,Displayable) in CommandListener
package…

user1834682
- 53
- 2
- 7
0
votes
1 answer
What's the difference between a midlet and a corelet?
It's my understanding that a corelet is a Motorola-ism, but does anyone know what the difference is? Do corelets have certain abilities that midlets don't?

jodonnell
- 49,859
- 10
- 62
- 67
0
votes
1 answer
J2ME Emulator not responding
am trying to do a simple hello world program in J2ME, I am using Netbeans 7.2.1 on ubuntu 12.04.
package helloworld;
import javax.microedition.lcdui.*;
import javax.microedition.midlet.*;
/**
* @author mashombo
*/
public class Midlet extends…

Lawrence Hans Matjeni
- 143
- 1
- 6
0
votes
1 answer
j2me midlet chinese character display message garbled
My J2ME midlet could retrieves message in Chinese character from a PHP server but it's garbled. The server basically returns the response string and by detecting the first 2 characters. AA = good, anything else indicates error of which the message…

LC Yoong
- 1,772
- 3
- 15
- 19
0
votes
1 answer
Open Web/URL through app
i'm developing J2ME.
Could you mind helping me to find out whats wrong with this code:
HttpConnection c = null;
try {
c = (HttpConnection)Connector.open("http://www.mysite.com",Connector.READ_WRITE, true);
…

oyiym
- 11
- 7
0
votes
1 answer
Implement a MIDlet that gets invoked when a SMS is sent to port 50000
I want to create a MIDlet which automatically starts using push registry function
PushRegistry.RegisterConnection("sms://:50000", this.getclass().getname(),"*");
Following is the code which I have come up with, and cannot find the problem with it…

Udit
- 1,037
- 6
- 11
0
votes
1 answer
Update midlet wirelessly
I am currently developing a j2me application for the i290 and would like to be able to update to new midlet revisions in my application using code. The problem I am having is that one method that I know of that can do this, platformRequest(), is…
Ring0
0
votes
1 answer
.jar garbled output on web browser when downloaded
I deployed my .jar file to the web server and attempted to download the .jar file using the old Nokia phone via its web browser. Upon finishing downloading, a garbled output is displayed on the web browser instead of prompting for installation. What…

LC Yoong
- 1,772
- 3
- 15
- 19
0
votes
1 answer
Playing audio in j2me fails
I'm having difficulty playing any audio in my j2me application.
I've tried to play a simple tone, only to receive an exception: "Device Busy, cannot play the tone".
I've tried to play an mp3 file that is embedded in my .jar and ended up getting an…
Ring0
0
votes
1 answer
Build J2Me App programatically from ASP Website
I am having this peculiar problem in hand. I have newly developed J2Me App Midlet, now I want to give this App to the user as a download from my website. I want to build the application programmatically as user clicks the link to download it, It is…
kruzAhead
0
votes
2 answers
Multiple instances of j2me midlet problem
I have a j2me midlet running on a cell phone. The code works fine, but the issue that comes up is that the program seems to be running more than one instance of itself. I have code at the beginning of the application inside the appStart() method…
CodeMonkey
0
votes
4 answers
Making a J2ME Midlet sleep without threads?
Quick question ... Using J2ME (CLDC 1.1, MIDP-2.1) is it possible to sleep the Midlet for a period of time (not using threads)... For example:
public class myMidlet extends MIDlet{
public void startApp() {
/* Sleep for 10 seconds */
…

Aiden Bell
- 28,212
- 4
- 75
- 119