Java – reading from serial port

communicationjavaserial-port

to read from serial port do i need to install some package the get support in netbeans?
which packages do i need to import at the start of program?

the statement:

import javax.comm.*;
results in error saying package does not exist…what to do

Best Answer

You can use javax.comm package.

You can download it in here.

You can check an example in here

Related Topic