Need modbus Java library

前端 未结 3 1255
情深已故
情深已故 2021-02-14 22:15

I need simple modbus Java library with source code. I found on google but there is .jar file and doesn\'t have strong using manual. Can anybody suggest me modbus library with us

3条回答
  •  无人共我
    2021-02-14 22:43

    • FieldKit is paid and open source, and haves support for several languages including Java

    • jModbus Project

    • j2mod is a fork of jamod

    If you are using Modbus RTU (Serial) Java Communications API is needed; stolen from FieldKit documentation:

    The Java Communication API is available from different sources:

    1. Sun Microsystems is publishing versions for the Solaris and the Windows platform at http://java.sun.com/products/javacomm/.
    2. Keane Jarvi publishes a LGPL licensed Linux and cross-platform COMM API at http://www.rxtx.org/.
    3. An excellently performing package for a large variety of platforms is the SerialPort package from Solutions Consulting at http://www.serialio.com. Using this package, poll cycles of less than 10 ms can be achieved!

    Perhaps jSSC is a good javax.comm implementation too.

提交回复
热议问题