The PipedWriter class makes it possible to write to a Java pipe as a stream of characters. In that respect the PipedWriter works much like a PipedOutputStream except that a PipedOutputStream is byte based, whereas a PipedWriter is character based.
Syntax:PipedWriter writer = new PipedWriter(pipedReader);
Example:PipedWriter writer = new PipedWriter(pipedReader);
while(moreData()) {
int data = getMoreData();
writer.write(data);
}
writer.close();
License.
All information of this service is derived from the free sources and is provided solely in the form of quotations.
This service provides information and interfaces solely for the familiarization (not ownership) and under the "as is" condition.
Copyright 2016 © ELTASK.COM. All rights reserved.
Site is optimized for mobile devices.
Downloads: 70 / 159171056. Delta: 0.00240 с