문제

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

도움이 되었습니까?

해결책

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.

다른 팁

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top