Tagged Questions
Mobile Information Device Profile is a set of Java ME specifications. Known versions are 1.0 (JSR 37), 2.0 and 2.1 (JSR 118) and 3.0 (JSR 271)
10
votes
4answers
2k views
How to deal with the most common classes missing on J2ME
I'm trying to code an application which runs un different java platforms like J2SE, J2ME, Android, etc. I already know that I'll have to rewrite most of the UI for each platform, but want to reuse the ...
10
votes
9answers
10k views
Image rotation algorithm
I'm looking for an algorithm that rotates an image by some degrees (input).
public Image rotateImage(Image image, int degrees)
(Image instances could be replaced with int[] containing each pixel ...
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 ...
5
votes
2answers
964 views
Gameloop for j2me “turn-based” game
Edit: This makes alot more sense to me now that i've taken a step away from the code, thanks for the help.
Just found stack overflow the other day through Coding Horror and it looks awesome. Figure ...
4
votes
3answers
347 views
Drawing Glassy Buttons
I'm going to draw some sort of glassy buttons in java me (targeting devices with MIDP 2.0).
An Example:
Actually I need to impelement Gradient and Bevel-Emboss effects in Java ME, do you have any ...
4
votes
4answers
826 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
980 views
J2ME Soft Key Wrapper
Reading some articles, told me that soft keys varies between devices.
Some says -6 or -21 for left soft key and -7 or -22 for right soft key.
Given this situation, is there any good wrapper or ...
4
votes
1answer
747 views
allow users to switch between input languages inside a j2me java midlet keyboard qwerty E71 and such
We have a midlet that needs to allow the user to switch input languages on the fly (its a dictionary type app) between several languages (say English to Arabic etc). All was charming in the "old days" ...
4
votes
2answers
217 views
Synchronize data from JavaME mobile locally
I would like to write a litte data-entry app for mobile phones using JavaME (MIDP/CLDC). How do I best synchronize the data with a local application on my PC (resp. just transfer the data to the PC)? ...
4
votes
3answers
1k views
How can I code Android with J2ME?
As for as i know that android application can be developed in core java only.But is it possible to code android with J2ME.Please give some example codes.
regards,
s.kumaran.
4
votes
1answer
1k views
Reading UTF8 strings from a server through http using MIDP
I want to read UTF-8 strings from a server that I have control of, using java MIDP.
My server is sending UTF-8 data.
The following code gets close:
c = (StreamConnection) Connector.open(
...
4
votes
3answers
2k views
HTTP authentication in J2ME
I'm trying to create a J2ME app, which talks to webserver using HttpConnection connector.
When I am talking to the WebServer, I have to authenticate using Basic HTTP auth, which normally goes like
...
4
votes
4answers
2k views
Getting Device IMEI
How to get the IMEI of a Java ME device in a common way that is applicable to all devices
4
votes
3answers
3k views
Is there a good HttpClient library for J2ME/MIDP?
I want to call some RESTful web services from a J2ME client running on a MIDP enabled mobile device. I read the MIDP api for HTTPConnections and thought this is just crying out for a simple wrapper to ...
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
88 views
Using boolean var for stopping threads
I have a Java book I'm learning from and in one of the examples, I saw something suspicious.
public class ThreadExample extends MIDlet {
boolean threadsRunning = true; // Flag stopping the ...
3
votes
2answers
749 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
835 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
2answers
298 views
Class.getSuperclass() replacement on Java ME?
How can I get the the superclass of a Class instance in Java ME. That is, fake the Class.getSuperclass() functionality with the limited functionality available in CLDC 1.1?
What I want to do is to ...
3
votes
1answer
1k views
J2ME: How to make a call?
Let's suppose i have created a text box with a phone number in it prefilled. How do i make a call when a button Call is clicked. The call should be for the number specified in the text box.
How to ...
3
votes
3answers
591 views
Is HTTP PUT supported in J2ME?
I just noticed a strange thing in MIDP 2.0 API: The HttpConnection class apidocs make explicit references to methods GET, POST and HEAD, but no other methods. Does this mean that they are not ...
3
votes
2answers
786 views
J2ME does not find my implementation of java.util.TreeMap
What I'm trying
I'm trying to use java.util.TreeMap in a J2ME application. I know that TreeMap is present on J2SE but not on J2ME, so I've made some efforts to port the J2SE 6.0 TreeMap to J2ME 1.2 ...
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
3answers
899 views
What are the differences between J2ME Wireless Toolkits and which one to choose?
I already know the differences between Java Edititions (ME, SE, EE), the ME Configurations (CDC and CLDC), Profiles (like MIDP), and additional APIs specified by JSRs.
But I am totally clueless ...
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?
...
3
votes
2answers
1k views
Making http request in J2ME
I'm maintaining a J2ME application where I found a http request to http://www.google.com in application initialization. I asked the developer why there is a request to google. He said that this way ...
3
votes
3answers
589 views
Is it possible to upload data as a background process in j2me?
Even with a poor network connection?
Specifically, I've written code which launches a separate thread (from the UI) that attempts to upload a file via HTTP POST. I've found, however, that if the ...
3
votes
4answers
3k views
How do I read strings in J2ME?
I'm using the MIDP 2.0 (JSR 118) and I just noticed that there is no reader for strings in J2ME.
Does anyone know how you are supposed to read Strings from an InputStream or InputStreamReader in a ...
2
votes
0answers
18 views
How to draw large image in canvas and move upon key event
I have a large image. This image has some text for user. So I must not resize the image to fit in the smaller screen. Image is much larger than device screen size. My intention is to draw the complete ...
2
votes
0answers
47 views
j2me google translate api
I really need an example how to translate a text with google translate API v2.
I have implemented already the following:
String googleUrl="https://www.googleapis.com/language/translate/v2?key=<My ...
2
votes
2answers
93 views
How to read and write data into same file simultaneously
I have read many a posts where-in they speak about reading and writing into the file NOT simultaneously using JavaME. I have a special use case scenarios where-in my log file (maybe full file or just ...
2
votes
1answer
93 views
Reading Content from File in J2ME
I am trying to read the content of a file but it seems not to work. I surfed the net and found different implementations as shown(read(), read2(), readLine()) but each time a run the codes they all ...
2
votes
1answer
73 views
I want to make SMS AutoReply use J2ME programs
I want to make SMS AutoReply use J2ME programs. I have method SendSMS(), I wish if I get a text message comes in, then the message before I set the SMS will be sent to the sender without having to ...
2
votes
0answers
68 views
Getting Nokia mobile hanged when form having choicegroup with POPUP style and Three TextField After select POPUP
I am developing an J2ME application having choicegroup with POPUP style and Three TextField . When I was tested my application on Nokia X2-01 device I found following issue regarding choicegroup ...
2
votes
1answer
46 views
How can I make my midlet send an SMS message to multiple recipients
I am currently working on a midlet for sending SMS messages. I made use of a textfield and specified the Input constraints as phone numbers (this constraints allow for automatic search for numbers in ...
2
votes
1answer
169 views
Designing keyboard on J2ME color mobile
I want to create a J2ME application for writing SMS faster using QWERTY button on a simple non-qwerty phone. So the application will show all these buttons which user can use
I've knowledge on Java ...
2
votes
2answers
57 views
setting command listener style preferences doubt
Why do some people prefer to use
.setCommandListener(this)
over
.setCommandListener(new CommandListener(){})
more often? In what case should I use the second one and why?
I am assuming it's just ...
2
votes
1answer
72 views
Help with JavaME Function
Could anyone explain to me how this MIDP Java function works? I'm particularly curious about the operators being used.
public static final int smoothDivide(int numerator, int denominator) {
...
2
votes
1answer
84 views
Filling a rectangle - paint method (MIDP)
Im trying to slowly paint a rectangle using two calls of .fillrect method with Thread.sleep call between each method. What is happening is that the sleep method is getting called before the rectangle ...
2
votes
1answer
107 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
2answers
103 views
What equivalent in MIDP programing to the JButton of swing-application?
In swing(GUI) application I used JButtons.
Now I need the same application in MIDP and I'm conuse...
I need Idea for what to use with and an example of how to use it and what kind of listener might ...
2
votes
4answers
338 views
Java ME Application running fine in Emulator but crashing when deployed to N70. Any way to identify the reason for crashing?
I have developed a Java ME application for CLDC platform. It works fine when executed in an emulator. But when i deploy it to my N70 phone the application doesn't start at all in the phone. In my ...
2
votes
2answers
2k views
HTTPS connection fails with IOException: “APN not specified” (Blackberry)
My Java ME Midlet works fine on Java phones and the BlackBerry simulator, but I can't receive a connection on a BlackBerry. I see a message that asks for permissions to connect, but when I select yes, ...
2
votes
3answers
2k views
Error preverifying class NetBeans 6.8 using lwuit api
I'm trying to develop a portable J2ME appli, but Netbeans do a class preverification of LWUIT library that uses optional APIs that some configurations don't have, so I get this error when I try to ...
2
votes
2answers
335 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
1k views
What is the difference between CLDC and MIDP for Java Mobile?
Could anyone explain what the difference is between CLDC and MIDP?
2
votes
4answers
424 views
Java licensing model : When do I need to pay Sun for using their software?
Java licensing model : When do I need to pay Sun for using their software?
2
votes
3answers
2k views
How do I get input from a user using j2me canvases? is this even possible?
Hey guys thanks for reading!
I am currently trying to learn J2ME and build a connect four game (some of you might know this as 'four in a row'). I've More or less got all of the aspects of my game ...
2
votes
1answer
1k views
Using MIDP Canvas keyPressed / keyCode on BlackBerry to get Canvas.FIRE for trackball click
I have a MIDP application that I would like to run on BlackBerry devices. It's quite generic, the one gotcha is that when I override the Canvas keyPressed(int keyCode) method, I'm not capturing the ...
2
votes
1answer
180 views
Privileged operations in netbeans mobility
I'm writing a Java ME app that will use privileged operations such as messaging. By default the user is prompted to confirm each of these operations, but I would like to run it as a background ...