|
| |
"Whole House Audio from the Palm of Your Hand - Part 2 of 3"
Vol. 7, Issue 9, p. 66
Listing 1
public void serialEvent(SerialPortEvent event) {
if (event.getEventType() == SerialPortEvent.DATA_AVAILABLE) {
byte[] readBuffer = new byte[inputStream.available];
String message = "";
try {
while (inputStream.available() > 0) {
int numBytes = inputStream.read(readBuffer);
}
message = new String(readBuffer);
System.out.println("Received :" + message);
} catch (IOException e) {
e.printStackTrace();
}
}
|
|
All Rights Reserved
Copyright © 2004 SYS-CON Media, Inc.
E-mail: info@sys-con.com
Java and Java-based marks are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other countries. SYS-CON Publications, Inc. is independent of Sun Microsystems, Inc.
|