Tagged Questions
MIDlet is an application that uses the Mobile Information Device Profile (MIDP) of the Connected Limited Device Configuration (CLDC) for the Java ME environment
6
votes
1answer
7k views
How do you sign a Java Midlet?
A simple question with a fairly complicated answer:
How do you sign a Java Midlet so you can load it onto a mobile phone with less security prompts?
5
votes
2answers
4k views
How to make a J2ME application run in Background?
i have a written a J2ME application which uses Bluetooth and search a file within the peer mobile and download it . I would like to make my application run in background , when ever i get a call , or ...
4
votes
4answers
833 views
MIDP 2.0 version issues: $method is undefined for $type
I've written a MIDlet that does several "advanced" things: fetching images from the web, resizing them, saving them on the phone, displaying them.
This all works perfectly in the Nokia S60 3rd ...
4
votes
4answers
2k views
JavaME - LWUIT images eat up all the memory
I'm writing a MIDlet using LWUIT and images seem to eat up incredible amounts of memory. All the images I use are PNGs and are packed inside the JAR file. I load them using the standard ...
4
votes
5answers
2k views
Processing chunked encoded HTTP POST requests in python (or generic CGI under apache)
I have a j2me client that would post some chunked encoded data to a webserver. I'd like to process the data in python. The script is being run as a CGI one, but apparently apache will refuse a chunked ...
3
votes
1answer
69 views
what is basic difference between J2ME MIDlets and blackberry RIMlets
I just started with Blackberry application development. What are differences between J2ME MIDlets and Blackberry RIMlets? Which is better for GUI Applications for Blackberry?
3
votes
2answers
752 views
How to quit / terminate / stop a j2me midlet?
Surprisingly terminating a midlet doesn't work in my application. Maybe it is because I'm using Threads, but destroyApp() and notifyDestroyed() are not sufficient.
Take for example the following ...
3
votes
2answers
836 views
J2ME Midlet exception :IOException reading reader invalid first byte
When i run my midlet with Java Wireless toolkit, midlet runs correctly, but when it try to parse a textfield, following error occurs;
java.lang.RuntimeException: IOException reading reader invalid ...
3
votes
6answers
2k views
J2ME's extra annoying HTTP permission prompt
Some phones only prompt the user for permission the first time a connection is made. Others pop up the permission prompt whenever the MIDlet attempts to make a HTTP connection! What are the options if ...
3
votes
3answers
3k views
J2ME and (open source) applet signing for Mobile Devices (esp. phones) - what can I do?
I've just discovered J2ME and I love the possibilities that it presents. I'm currently working on a simple application and I'd like to maybe release it as an open-source project sometime in the ...
3
votes
1answer
2k views
Open file with MIDlet.platformRequest()
Is it possible to get a device to open a file on disk using the MIDlet.platformRequest(String url) method? I was hoping to use the following:
midlet.platformRequest("file:///path/to/file/file.png");
...
3
votes
2answers
3k views
Yes/No dialog in Java ME
I'm looking for a simple solution for a yes/no dialog to use in a Java ME midlet. I'd like to use it like this but other ways are okey.
if (YesNoDialog.ask("Are you sure?") == true) {
// yes was ...
2
votes
0answers
74 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
1answer
74 views
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 ...
2
votes
2answers
141 views
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 ...
2
votes
2answers
69 views
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 ...
2
votes
0answers
82 views
How to make a text readable by a text to speech in a j2me application
I'm writing a midlet that write some lines of text on the screen.
my problem is that using a StringItem, the TTS reads just the last line on the screent
2
votes
1answer
207 views
how to disable lwuit vkb?
The ability for disabling vkb is included in the new svn source code...
But by default vkb comes in midlet...
How to disable it in midlet...
In the old documentation it was given
To use the LWUIT ...
2
votes
1answer
142 views
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 ...
2
votes
1answer
109 views
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 ...
2
votes
6answers
264 views
Is it worthwile to learn Java ME? [closed]
I have seen many people writing that Java ME (J2ME) is dying. Is it true? What is its future? Should I learn Java ME if I want to create apps for smartphones? If yes, where to start?
2
votes
1answer
338 views
How to start two J2ME Midlets on Mac OS X with WTK 3.0
Whenever I want to start second Midlet, I get error "MIDlet suite is already running."
I'm developing under Netbeans.
On Windows it work OK.
With king regards!
2
votes
1answer
380 views
Capturing images using S40 5th edition FP1 Lite device in J2ME
I tried to test the source code for reading QR codes from http://qrdemo.com/qrmidlet. Then, I tested it using the S40 5th edition FP1 Lite SDK. It throws a javax.microedition.media.MediaException. ...
2
votes
1answer
478 views
Does signing Java ME MIDlet by a certificate from VeriSign help avoid security warnings?
I was sure for a long time that the answer is yes.
But after I've read this article:
http://javablog.co.uk/2007/08/09/how-midlet-signing-is-killing-j2me/
(especially "How MIDlet signing used to be" ...
2
votes
2answers
336 views
Developing a MIDlet for Windows Mobile
Is it possible to create a MIDP Application for Windows Mobile?
In other words, I want to create a MIDlet and run it on a Windows Mobile Simulator(any).
Thanks in Advance.
2
votes
1answer
732 views
How to open a file with JSR 211 CHAPI (Content Handler API)
Please note that this is a question about MIDlets, i.e. Java ME (not "ordinary" Java SE).
I'm looking for the correct way to invoke content on a mobile phone using JSR 211, i.e. CHAPI - Content ...
2
votes
2answers
731 views
Netbeans, mobile development and screen size
I'm looking at prototyping with a HTC Advantage, which runs Windows Mobile 5 and has a screen resolution of 640x480 (or the other way if in portrait).
Before anyone jumps in and suggests developing ...
2
votes
2answers
389 views
Java Midlet Deployment
So, I've develop a simple hello world midlet using the Samsung SDK 1.1.2 and I've Packaged the midlet. Now I have two files (a JAR/JAD) combination. How do I get these installed on my phone?
As you ...
2
votes
2answers
130 views
Midlet v/s Phone Browser app pros and cons?
How do you weight the pros and cons between a Midlet and Browser based client/server app for a phone ...
What are the pros and cons of both...
And based on your experience what will you prefer to go ...
2
votes
0answers
507 views
Connect midlet to server in internet via bluetooth
I'm writing an application that's basically a midlet that connects via WiFi to a server on the internet. Everything's running fine, once I load the midlet onto the phone and start it, I get prompted ...
2
votes
2answers
178 views
Thread-safe checking variable for a midlet
I'm programming a game in j2me in the client side, that connects to a server written in java. This game is going to have a chat feature, but as a secondary feature.
For every midlet that connects to ...
2
votes
2answers
517 views
how can Midlet calls static variable?
i have a midlet which has got a static variable. i need to keep the record of all the instances created in this variable. but it does not work like static variable. my code segments look like this. i ...
2
votes
3answers
2k views
Can A Midlet invoke another Midlet?
I been looking around and at sources like this one they say that a Midlet can invoke another if they are in the same suite, or if they are in the same namespace and in the same jar file.
I do not ...
2
votes
1answer
548 views
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 ...
2
votes
2answers
1k views
Can you record audio with a Java Midlet on a Nokia phone (N80/N95) without the JVM leaking memory?
I would like to repeatedly capture snippets of audio on a Nokia mobile phone with a Java Midlet. My current experience is that using the code in Sun's documentation (see: ...
1
vote
0answers
40 views
ClassNotFoundException trown when registering Midlet in the PushRegistry
I'm getting an odd error I can't get to the bottom of. When I register the midlet in the Push Registry it throws the ClassNotFoundException. I've used a very standard implementation straight from the ...
1
vote
3answers
50 views
I want to display an PNG image using J2ME MIDlet classes on blackberry device
I am trying to display a PNG image on blackberry device for OS 5.0 using J2ME MIDlet class instead of a blackberry RIMlet class. Can I use J2ME MIDlet instead of RIMlets? Would it be compatible with ...
1
vote
1answer
58 views
Is MIDlet.startApp() guaranteed to be executed fully before MIDlet.pauseApp() or MIDlet.destroyApp() is called?
MIdlet's class javadoc states that MIdlet.destroyApp() will be called if MIdlet.startApp() throws a RuntimeException. Assuming no exception is thrown while executing MIDlet.startApp().
Is ...
1
vote
1answer
75 views
How to add a .TTF file into Java ME application
I'm developing j2me application and want to add a custom font into that.So how to add a .ttf file into a j2me project.
1
vote
2answers
56 views
Is it possible to re-show the last opened Form when the MIDlet was paused?
The application is running , the user is making some TextField editing. Then a call is received , so the MIDlet enters the paused state. When the conversation is finished then the application is ...
1
vote
1answer
23 views
Is it a good idea to use and set a value for the MIDlet-Permissions-Opt and/or MIDlet-Permissions attributes to auto-sign a MIDlet?
There is the MIDlet-Permissions and MIDlet-Permissions-Opt attributes that can be set in the jad file. Can we use them to auto-sign a MIDlet ?
1
vote
0answers
107 views
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 ...
1
vote
2answers
57 views
compilation error in example midlet from Java ME 3.0
There are many example in j2me sdk 3.0 (http://www.oracle.com/technetwork/java/javame/javamobile/download/overview/index.html)
I'm trying to build example to learn more about MIDlet 2d graphics.
...
1
vote
1answer
128 views
J2ME Midlet - Self-signed certificate
I want to sign my application but I don't want its users to install certificates on their phones before installing my application. Is it possible to sign j2me midlet with self-signed certificate?
1
vote
2answers
252 views
How to convert StringBuffer to InputStream in Java ME?
I'm new in Java and learning Java ME development. I got stuck in this conversion. Please help me to convert StringBuffer to InputStream. Thanks!
1
vote
1answer
93 views
NetBeans J2ME FileBrowser browse only folder?
I'm using NetBeans to build a folder browser application. In application flow, i place a file browser control to browse files and folders.
My problem: The file browser control always list both ...
1
vote
1answer
53 views
Can not launch more than one MIDlet in eclipse error?
I've been asking questions on here for some time, but this will be my most nooby of all
sadly ¬_¬
I've just downloaded Eclipse Pulsar with a Nokia simulator tied into it. Ran the application as a ...
1
vote
2answers
207 views
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.
1
vote
1answer
110 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
104 views
how can connect the soap webservices in symbian mobile using j2me
I'm new in symbian mobile applications. I'm developing webservices related application in this webservices using .net webservices (ksoap). How can connect webservices in j2me midlet application in ...