Using RXTX

From Rxtx

(Difference between revisions)
Jump to: navigation, search
m (link to a page describing an interface and an example usage for beginners)
 
(8 intermediate revisions not shown)
Line 1: Line 1:
This page is for general content regarding the use of rxtx.  Feel free to add your own content.
This page is for general content regarding the use of rxtx.  Feel free to add your own content.
 +
 +
*[[Examples | Code examples]]
*[[Using RXTX In Eclipse]]
*[[Using RXTX In Eclipse]]
 +
*[[Wrapping RXTX in an Eclipse Plugin]]
 +
*[[Using RXTX In NetBeans]]
*[[Deploying JAVA with RXTX]]
*[[Deploying JAVA with RXTX]]
 +
*[[Documented interface to communicate with serial ports for beginners, including example project]]
I wrote an app several months ago using javax.comm on windows. Sun has left me high and dry. rxtx help!
I wrote an app several months ago using javax.comm on windows. Sun has left me high and dry. rxtx help!
Line 14: Line 19:
*test
*test
-
   Dido Sun left me Hi and dry. After 30+ hours wasting my life on javax.comm it is the RXTXcomm 2.1.7 that really worked the first time
+
   Dido Sun left me Hi and dry. After 30+ hours wasting my life on
 +
javax.comm it is the RXTXcomm 2.1.7 that really worked the first  
 +
time
   REMEMBER !! for the newbies
   REMEMBER !! for the newbies

Latest revision as of 14:35, 13 June 2010

This page is for general content regarding the use of rxtx. Feel free to add your own content.

I wrote an app several months ago using javax.comm on windows. Sun has left me high and dry. rxtx help!

  • download [1]
  • unzip it
  • copy rxtxSerial.dll into your c:\program files\java\jre-version\bin dir
  • copy RXTXcomm.jar into your c:\program files\java\jre-version\lib\ext dir
  • change all references from 'javax.comm' to 'gnu.io'
  • recompile
  • test
 Dido Sun left me Hi and dry. After 30+ hours wasting my life on
javax.comm it is the RXTXcomm 2.1.7 that really worked the first 
time
 REMEMBER !! for the newbies
  Change the all occurences of the import javax.comm.*; in  
   MyApps.java
  TO import gnu.io.*;
 I did not even have to recompile as suggested the rxtxSerial.dll
 a job well done for the rxtx.org team.
Personal tools