JVM Languages
javarfid.txt
Associated article: Java & RFID Tags
Tags: Mobile JVM Languages Design
Published source code accompanying the article by Shamshad Ansari in which he uses the Java Communication API to send commands to and receive responses from RFID readers such as the TI S2000 Micro-reader.
=================DR. DOBB'S JOURNAL===============
Java & RFID Tags
by Shamshad Ansari
Example 1:
serialPort = (SerialPort) portId.open("SimpleReadApp", 2000) opens COM1 serial port identified in the following code segment
while (portList.hasMoreElements()) {
portId = (CommPortIdentifier) portList.nextElement();
if (portId.getPortType() == CommPortIdentifier.PORT_...


