Originally posted by Keshava Moorthy:
Can somebody helps me details about serial port communication using JAVA
Hello Keshava,
what do you exaclty want to know about it? Perhaps I send you a code snippet showing you how to open a n Input-/OutputStream on a ComPort.
CommConnection is included in the Public Review Draft of PDAP. (Com port settings etc.)
Here's the code showing you how to handle CommConnections using the Generic Connection Framework:
StreamConnection sc = (StreamConnection)
Connector.open("comm:0;baudrate=9600");
InputStream is = sc.openInputStream();
OutputStream os = sc.openOutputStream();
// add code to read/write here ...
is.close(); // close the streams
os.close();
sc.close(); // close the CommConnection.
Do you need more specific infos?