-
Notifications
You must be signed in to change notification settings - Fork 288
Java InputStream and OutputStream Interfacing Usage Example
Will Hedgecock edited this page Mar 12, 2015
·
9 revisions
InputStream in = comPort.getInputStream(); try { for (int j = 0; j < 1000; ++j) System.out.print((char)in.read()); in.close(); } catch (Exception e) { e.printStackTrace(); }
Copyright © 2012-2024 Fazecast, Inc. All rights reserved.