vote up 1 vote down star

Is there a java library or framework (other than the javax.comm provided by Sun) that is easy to use when accessing serial and parallel ports ( especially RS-232 ). I need something free that will work both on Windows and Linux.

flag

79% accept rate

5 Answers

vote up 4 vote down check

As andri pointed out RXTX is pretty much your best choice. There is an article on getting started with RXTX on Windows here (relating to RXTX 2.1).

link|flag
vote up 1 vote down

If free isn't necessary -- remember, your time isn't free -- then Serial IO SerialPort might be useful. It's the only thing I found that works as-is on all of the following:

  • 32/64-bit Windows
  • 64-bit Solaris (didn't test 32-bit)
  • 32 bit Linux (didn't test 64-bit)
  • Mac OS X

You do get source with the product, albeit with some weird and annoying build practices.

FWIW, I'm just a contented user, not affiliated with the company.

link|flag
I have used it also with multiple versions of Windows with no problems - OTOH, serial libraries from Sun, IBM and RxTx were all unstable and crashed at random intervals. – Software Monkey Apr 14 at 16:27
vote up 0 vote down

Similar question: http://stackoverflow.com/questions/264469/java-rs-232-communication-on-windows

link|flag
vote up 0 vote down

rxtx as the other posters have said. I've been using it and it works nicely. There is a problem if using nonstandard highspeed baudrates (multiples of 115200 e.g. 230400, 921600 are OK, but 1MB is not even if the hardware & underlying OS supports it), I've been told this will be corrected in rxtx 2.2.

link|flag
vote up 7 vote down

The most common framework used for this is rxtx.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.