views:

877

answers:

3

Friends, I want to connect and transfer data to COM PORT (either virtual or original) in JAVA?

+1  A: 

The Java Communications API (also known as javax.comm) provides applications access to RS-232 hardware (serial ports)

http://java.sun.com/products/javacomm/

Robert Harvey
+2  A: 

An alternative to javax.comm is the rxtx library which supports more platforms than javax.comm.

freespace