Top "Midp" questions

Mobile Information Device Profile is a set of Java ME specifications.

Image rotation algorithm

I'm looking for an algorithm that rotates an image by some degrees (input). public Image rotateImage(Image image, int degrees) (…

algorithm optimization java-me image-manipulation midp
Java - I need a very fast image scaling algorithm

I am working on a Midlet application. I am finding myself in the need to scale images very often. This …

java image-processing image-manipulation midp image-scaling
how to install javax.microedition.lcdui package into Netbeans

I am using NetBeans 6.9.1. When I try to import javax.microedition.lcdui.Command; import javax.microedition.lcdui.CommandListener; import javax.…

java netbeans java-me midp lcdui
how to kill a thread which is waiting for blocking function call in Java?

I have a thread: Thread t = new Thread(){ public void run(){ ServerSocketConnection scn = (ServerSocketConnection) Connector.open("socket://:1234"); // Wait for a …

java multithreading java-me midp
Loading image in Java J2ME

I have a problem with loading image with java 2ME. I have a image file "picture.png" in location drive "…

java java-me midp lcdui
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. …

java multithreading java-me midp
How do I add button in J2ME?

I was wondering, how do I add a button in a form? Below is my code form = new Form("ePolicia …

java-me midp lcdui
Java ME - Multiple forms, moving from one screen to the next

I am using Java Micro Edition and I am trying to create a simple login form with a record store. …

java-me midp lcdui