vote up 0 vote down star

Hello, How do I make a J2ME Midlet to communicate with a java program or some application on the pc through the cable connected?

Thanks

flag

What device and what kind of cable do you mean? – Frank Bollack Sep 9 at 9:16
Any mobile phone...connected through USB port – Josh Sep 9 at 9:17

3 Answers

vote up 1 vote down check

Incredible_Honk is almost right. The key is to use the (standard) system property "microedition.commports". This provides a comma delimited list of the com ports which are available to your application. To open a connection use CommConnection as follows:

CommConnection con = (CommConnection) Connector.open("com:<commport name>");

Usually this will provide access to a USB serial connection, possibly also infrared if available. Iterate through each one to see which one corresponds to the connection you're looking for.

On Windows at least, you will need to install the correct drivers for your handset first. This will then allow you to open a serial connection and communicate with the application.

link|flag
vote up 1 vote down

There is no general way of doing this. It hardly depends on the capabilities of the mobil. Might be that there is some vendor API giving you special access to USB, but I'm not aware of any.

Some phones support communication via serial port connections. Take a look at the javax.microedition.io.CommConnection interface for more information.

link|flag
vote up 1 vote down

Hi, Sonyericsson phones offer a way to debug your midlet on the device and get the console messages back through the cable.

link|flag
I don't think SE provides a J2ME API that can be used to interact with the debugger. – Frank Bollack Sep 9 at 11:50
there is no api. You can debug midlets on a SE device when it is connected via a cable. The console output of the midlet is rerouted to your PC console – reinier Sep 9 at 13:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.