Questions tagged [midlet]

MIDlet is an application that uses the Mobile Information Device Profile (MIDP) of the Connected Limited Device Configuration (CLDC) for the Java ME environment

263 questions
1
vote
1 answer

How can I get rid of the "back" button in my j2me programms while using LWUIT?

I'm writing a j2me application using LWUIT. I make a GUI in the LWUIT Resource Editor. But there's a little problem: when I switch through the Forms in my mobile application, the "back" soft button appears (it's task is to move user to the previous…
Angstrem
  • 346
  • 1
  • 4
  • 14
1
vote
1 answer

How to get information/data from platformRequest() in J2ME?

I want to implement a behavior similar to Whatsapp, where when the user can upload an image. I tried opening the images in my app, but if the image is too large, I will have an out of memory error. To solve this, I'm opening forwarding the images to…
1
vote
1 answer

Can I run a MIDlet on an iPhone 4s?

I'm trying to make a simple application similar to the commonly used "Hello World" using Netbeans 7.2 for a project at school. I'm just wondering if I could run it on an iPhone 4s? If not, would a Samsung GT-15503 work (I initially planned on making…
nutellafella
  • 135
  • 1
  • 4
  • 17
1
vote
1 answer

Creating "expansion packs" or "add-ons" for MIDlets?

How it currently is: I'm making a small application for Java-enabled phones (MIDlet-based "dumb-phones", not Android). The application is structured like this: "Infrastructure", with core functionality Modules of type A (classes implementing…
CamilB
  • 1,377
  • 1
  • 12
  • 27
1
vote
1 answer

Java midlet detecting printer

I am trying to incorporate an interface into my Midlet app to detect printers. Could be a couple of scenarios:- a. Printers that has been added to the mobile. b. Detect blueetooth printers Thanks in advance.
LC Yoong
  • 1,772
  • 3
  • 15
  • 19
1
vote
1 answer

How to implement more than one Images in form and new Date instances

In the CalendarCanvas class, the idea is to press on any day in the Calendar and a form will be presented with the actual date of the day THE USER picked (not just today's date as it's doing now) and underneath the form will be the image pertaining…
Addy75
  • 167
  • 2
  • 10
1
vote
1 answer

Microemu running MIDlets on JavaSE

I got this J2ME application (5ud0ku.jar) and I want to let it run on the PC with just a single JAR file (while using the JSE). I tried using microemu, but I can't seem to get it work. Also can the emulator be without the fake phone UI?
Dallox
  • 487
  • 5
  • 8
  • 19
1
vote
1 answer

Retrieving images from servlet to Midlet(J2ME)

This is my current Midlet if (display.getCurrent() == mainform) { selectedparam = activity.getString(activity.getSelectedIndex()); url = "http://localhost:8080/TOMCATServer/RetrieveServlet?"; parameter =…
user1033038
  • 141
  • 3
  • 15
0
votes
4 answers

Store data with MIDP RMS and retrieve in PC

How can I retrieve data stored using MIDP's RMS? I would like to collect some data in the handset and then be able to process it in the PC's application. If I can't do it using RMS, is there a way to store data in text files using MIDP?
Ricardo Acras
  • 35,784
  • 16
  • 71
  • 112
0
votes
1 answer

Java MIDLET Manager.createplayer

I'm developing a Java mobile application, to play the URL "mmsh://*.asf" in that application, but i'm getting the exception "javax.microedition.media.MediaException: Cannot create a DataSource for: mmsh://*.asf". My doubt is can i able to create a…
Vinoth
  • 21
  • 3
0
votes
0 answers

how to close a dialog box in lwuit?

Possible Duplicate: How can I Dispose Dialog box From LWUIT Component I am Using the Following Lwuit code to display a Dialogbox. when I press Key 0 a dialog should show as like in Switch case 48. When I press Key 4 that dialog should be closed…
Shankar
  • 11
  • 5
0
votes
1 answer

image creation fails in midlet

I'm trying to make a image as follows:- try { strom = Image.createImage("stromB.png"); map0 = Image.createImage("map0.png"); } catch (Exception e) { System.out.println("image creatino faild"); …
masiboo
  • 4,537
  • 9
  • 75
  • 136
0
votes
2 answers

Setting Midlet Icon using J2ME-Polish

I'm using J2ME Polish version 2.0.7 together with ant to build my Midlet application. In order to specifcy the main-class, name and icon of the application, the J2ME Polish documentation suggests that I use the midlet element inside the build…
takete.dk
  • 2,705
  • 1
  • 19
  • 12
0
votes
1 answer

rms queries, find a phrase inside a text

I want to do a midlet application for save product with its bar code, product's name, product's description and price. Then it is going to be saved as it: 123123123-coca cola-soda-6.50 124512341-crystal coca-soda-7.00 well for this I have built this…
angel uc
  • 1
  • 1
0
votes
2 answers

j2me + javax.microedition.midlet.MediaException:Sounds not allowed

I am trying to Play MP3 and getting unexpected errors. I have tested my app before 3 days which was working perfect on my device but now even that same jar file is giving me following error. javax.microedition.midlet.MediaException:Sounds not…
Mihir Palkhiwala
  • 2,586
  • 3
  • 37
  • 47