Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Serial communication API for Java on 64 bit systems (modem interaction)

I'm searching for an serial communication API for Java. Very important is the support of 64 bit systems. I've used rxtx with the 64 bit libs of Cloudhopper but on some Windows Server 2008 systems I got heavy problems with jvm crashes when accessing (virtual) serial ports.

The main purpose is interacting with analogue modems, maybe there is another way of modem communication in Java?

It would be very nice if the API is free of charge.

like image 450
sebastian Avatar asked May 04 '12 09:05

sebastian


2 Answers

I have moved to the new java-simple-serial-connector which seems to be very stable and comfortable at the current release 0.9.0. For now it works on every system (I need) and has no problem with virtual serial ports.

like image 82
sebastian Avatar answered Oct 03 '22 09:10

sebastian


You can try Java Communications API.

You can configure it using help from this link.

EDIT:

Download it from here.

like image 30
HashimR Avatar answered Oct 03 '22 11:10

HashimR