0

I can't get serial communication to work with my Java application on 32 bit systems, both Windows XP and 7. I've tried jssc and all i get is "Port Busy". The solution from Oracle doesn't give "Port Busy", but it just hangs, doesn't read any data. Everything works fine on 64 bit systems. Any idea what i might be doing wrong that causes it not to work on 32 bit? Other serial comm libraries that you might have used with success on 32 bit systems? Thank you!

1 Answers1

0

It turns out it was a packaging problem. Somehow the serial communication library didn't get packaged right. We redid it and now everything works.

  • I have same problem. Can you explain what exactly you did? I've tried to remove than add again jssc.jar but the error is same whatever i do. Always port is busy. – Josef Jan 26 '16 at 07:50
  • I didn't use jssc, I ended up using rxtx. But it's not a great solution because i have to manually copy the rxtx.dll in the Java installation folder of the computer that I want to run my program on. But still, it works. – user3673938 Jan 27 '16 at 08:41