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
J2ME chat application not connecting
I created a chat application based on the code here:
https://anujarosha.wordpress.com/2011/07/26/chat-application-in-j2me/
which use IP adress to connect from the client to the server. But the client is not connecting to the server, when testing on…

Mathew Emmanuel
- 1
- 2
0
votes
1 answer
How to parse a midlet JAD file in C#?
Besides doing it manually using regular expression search, is there other better ways to parse a JAD file?
I need to be able to search for and replace/insert a new MIdlet-Install-Notify property to a JAD file given, also updating the value of the…

Chris
- 657
- 1
- 9
- 17
0
votes
1 answer
How to tell cell phone to install midlet in applications folder?
I'd like to suggest where the phone should install the j2me app. For instance, on Nokia phones, it always install them in games folder. Is there a way to suggest a destination folder? Either in .jad file or in MANIFEST file?

Igor Gatis
- 4,648
- 10
- 43
- 66
0
votes
1 answer
J2ME MIdlet Application Signing Issue
I have developed j2me application.The application access files using file-connection api extensively, so purchased certificate from symantec (Veri sign)to avoid file permission problems
And signed the JAD file successfully.
Problem:-
On deploying…

Vignesh
- 37
- 7
0
votes
2 answers
Permission check failed in J2ME Socket program
I want communication through socket between My Computer host(Server) and A Raspberry pi board(Client). I am using following code:
For Server
public void startApp() {
try
{
ServerSocketConnection ssc = (ServerSocketConnection)
…

Tarun Kumar
- 3
- 1
0
votes
1 answer
BGS5T RS232 communication with 1-wire sensor
I have Gemalto BGS5T java module and 1-wire temperature sensor. I have java midlet which uses RS232 port to communicate with temperature sensor. But the problem is that, I get no response from the sensor no matter what I send. Sensor has the right…

Jure
- 799
- 6
- 25
0
votes
1 answer
J2ME system notification / play sound when phone is locked
Good day all,
I have a java based phone (samsung star 2 5260) and it's three weeks that I'm trying to come up with a solution to receive notification on received emails.
The phone configures a periodic check for a minimum of 30 minutes, but I need a…

roamcel
- 645
- 1
- 8
- 17
0
votes
1 answer
NetBeans Java ME project configuration
I have a task: fix some problems in existing Java ME project. I open it in NetBeans, Java ME is installed at my system (Fedora).
There is a problem: I don't know how to launch this project. I click the launch button and get this:
Starting emulator…

another-programmer
- 841
- 13
- 37
0
votes
1 answer
J2ME java.io.IOException error
I have the following code:
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
import java.io.*;
import javax.microedition.io.*;
public class FileConnection extends MIDlet implements CommandListener, Runnable {
private Command…

qwerty
- 139
- 2
- 10
0
votes
1 answer
Getting phone call logs using API Bridge - J2ME
I'm trying to get to my nokia symbian S60 5th (NOKIA 5800) phone call logs using API Bridge. I followed the documentation from Nokia site but application doesn't work. The code is in Java ME. The problem is that I can't Initialize the API Bridge…
0
votes
1 answer
Missing Launch Icon for Midlet on Blackberry
I am using the 1.1 Blackberry Plugin for Eclipse to develop an application. I am able to create a Hello World program using BlackBerry native code, but I am unable to get a Midlet working. Unlike the Hello World which appears in Downloads, the…

Casebash
- 114,675
- 90
- 247
- 350
0
votes
1 answer
J2ME Midlet showing Java Error on some phones
the APP is working fine on emulator but shows java error afer installing on some samsung phones
After install java screen appears and a dialog saying java error
JAD file:
MIDlet-1: SuperRecharge, ,…

Shashank Srivastava
- 436
- 5
- 16
0
votes
1 answer
send SMS using GPRS in MIDlet
i want to send a SMS using GPRS in MIDlet...
anyone can help me??
Thanks in advance...

Hitesh Prajapati
- 1
- 1
- 1
0
votes
1 answer
Weird Behavior of getHeight()
I am Creating a J2ME game and i've noticed strange behavior of getHeight() function.
Instead of Giving the Full Screen's Height in Pixels,it seems to be returning less than that
My Code:
Gamecanvas.java :
package game1;
import…

Spikatrix
- 20,225
- 7
- 37
- 83
0
votes
0 answers
Can not able to call my canvas object to my midlet in j2me?
I made a form to accept the player name then On ok press it will give me an alert and on done click it will take me to a list Start,Credit and Highscore .
Please help I am totally new in this field
this is start function where i made my canvas…

Abhishek Sharma
- 13
- 4