java-me

Which language should i go for when developing mobile device apps

Hello I see quite some variety of languages/technologies available to develop for the mobile devices/ palms, PDAs, etc such as JavaME, Windows Mobile etc. And now we see Android emerging up. Question: Which language/technology would you suggest for development for these devices, something that should could be emerging and future compa...

How to zoom in google map (J2ME)

Hi all, I am trying to develop a J2ME application that could retrieve the google map by passing in the GPS coordinates. From http://wiki.forum.nokia.com/index.php/Google_Maps_API_in_Java_ME, it provides the Utility method for map scrolling. Basically it states that i need to include MicroFloat library in my project. Here's what i d...

J2ME and mobile phones

Hi, can i write a MIDlet that stays "resident" like an agenda, that alarms when a certain event will occur( in other words, the MIDlet API allows the developer write a application that stays running in background)? Within a MIDlet, can i use the vibratory alarm of the cellphone? ...

Adding Marker on Google Map with J2ME

Hi, I am developing an mobile application that search the user's location via GPS and display the location of the user on the google map. I am aware that i can load a static map base on the coordinates. But is it possible to add a marker on the static map itself?? This link http://wiki.forum.nokia.com/index.php/J2ME_Google_Maps_API d...

J2ME: How to press keypad programatically?

Hello All, Is it possible to press keypad programatically so that number for the key pressed shows on the screen? See the screenshort below for more explanation please: Details: Nokia N70 CLDC 1.1 MIDP 2.0 ...

Use Threads in Midlet: how to listen to running thread?

in my class I have an inline thread in the constructor that loads objects from a remote site: Thread readSite = new Thread(new Runnable() { public void run() { site.loadStuff(); } }); readSite.start(); I want to display a 'loading' message until the thread is finished. So before the above code I show a loadin...

J2ME: How to import contact from contact list?

Hello, How do i add the functionality to import a contact number from address book/contact list and add it into an array? Edit If you have seen the advanced call manager app, it allows you to choose a contact from contact list and add to blacklist. I want to do same thing choose a contact from contact list and add to internal array. ...

C++ in mobile apps. How does it works

Tell me. How is executed binaries (written in c++ ForExample) in mobiles?? Is it only possible as mixed with J2ME or is it possible to execute "RAW" (like exe file) binary. (In old and new mobiles) ...

Android UI vs J2ME UI

Hi, I know android is better than J2ME, but i need to know what can i do with android but j2me cant?? (just about UI), some examples could be... thx a lot, i'm new in mobile... ...

Can we upload a video with j2me?

Hi, I am new to j2me.Is there any file field in j2me?If not, how will we upload an image or video in j2me? Thanks in advance. ...

How to read .xls(ms excel) file in blackberry

How to read .xls(ms excel) file in blackberry application. Is there any api available? ...

error in java (CameraMIDlet)

i have the following code which is giving me error: /* * To change this template, choose Tools | Templates * and open the template in the editor. */ import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.Vector; import javax.bluetooth.BluetoothStateException; import javax.bluetooth.Device...

refresh problems in j2me

m developing a twitter mobile client...logout and refresh working perfectly in emulator...but while trying to run the application on mobile....the application hangs after trying to refresh and login after logout fails.... ...

reading sms messages from my inbox in j2me

how can i read sms messages in my inbox?i want to read the sms msgs ,no of msgs etc Can i do it in j2me?if yes how? i want to run the app on nokia and sony ...

Unable to stream image from midlet to browser?

Hi all, My midlet acts as server , when i request any resource from midlet it must transferred to browser and displayed. Here i am able to transfer html files,but i am unable to transfer image through OutputStream. I am converting image to byte array also. ...

Touch event on midlet command

Hi, I am creating application for touch devices for nokia. J2ME provides methods pointerpressed,release and drag on canvas. I have generated a canvas in full screen mode having commands. On click of "option" command, another command menu opens, which is having commands like Ok, Back, Next. Now to get the event of sub command menu I ha...

Using Ruby on Windows Mobile Devices

As far as I know, JRuby runs only on full JVM. I found this version of JRuby which runs on Java Micro Edition devices, however it's marked as EXPERIMENTAL AND RESEARCH ONLY Are there any other options for running Ruby application on Windows Mobile devices? ...

Creating multiple objects within a class

Hi all, I am trying to create a class. Let's call it Questionnaire. In Questionnaire, I want to instantiate a number of classes called Question. The constructor for Questionnaire accepts a string array of words, and for each word, there should be a Question class to accept it as an argument for its constructor. In other words, for every...

Bluetooth video streaming

Can anyone please direct me to learn something about Bluetooth video streaming programming using j2se and j2me technologies as i want to stream live video from pc to mobile phone through Bluetooth. I am caputring video using jmf and then converting the captured video to 3gp format. I want to stream this video to mobile phone(I have tra...

Loading Huge resolution images causing Heap error in j2me

Hello, I am trying to load a 3776 * 2816 PNG, 24 bit image - 804KB onto my phone , the MOTO ROKR e6.It gives up with java.lang.OutOfMemoryError,Is their a general way to handle loading such high resolution images.The phone's internal memory is only 8MB, I think this has something to do with the error. I have also, tried to split the im...