Question

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

Was it helpful?

Solution

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.

OTHER TIPS

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.

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top