Use the PipedInputStream class and the PipedOutputStream class to learn about communication between pipe streams.

Use the PipedInputStream class and the PipedOutputStream class to learn about communication between pipe streams.

[[433836]]

Hello everyone, I am a Java expert.

Preface

Use PipedInputStream and PipedOutputStream in the application to create communication between pipes. A PipedInputStream instantiation object and a PipedOutputStream instantiation object are connected to generate a communication pipe. PipedInputStream is used to read written data from the pipe, and PipedOutputStream is used to write data to the pipe. Use PipedInputStream and PipedOutputStream for communication between threads. Use PipedInputStream and PipedOutputStream to learn about communication between pipe streams. Next, let's learn together!

1. PipedInputStream Class

1. PipedInputStream class Piped input stream, which can be connected to a piped output stream. The piped input stream provides the bytes of all data to be written to the piped output stream.

2. PipedInputStream class construction method:

(1) public PipedInputStream(): Creates a piped input stream object, which is not yet connected.

(2) public PipedInputStream(PipedOutputStream out): Creates a piped input stream, which is connected to the piped output stream specified by the parameter out. As shown below:

  1. PipedInputStream pis=new PipedInputStream();

3. The PipedInputStream class methods are:

(1) int read(): reads the next byte of data.

(2) int read(byte []b, int off, int len): reads len bytes of data into a byte array. The off parameter indicates the offset and len indicates the length of the read data.

(3)void receive(int b): receives one byte of data.

(4) void connect(PipedOutputStream src): indicates that the piped input stream is connected to the piped output stream src

(5) int available(): indicates that there is nothing to prevent reading bytes from the input stream.

(6)void close(): means closing the stream.

2. PipedOutputStream Class

1. The PipedOutputStream class is a piped output stream, which can be used to write data to the pipe.

2. PipedOutputStream class construction method:

(1) public PipedOutputStream(): Creates a piped output stream object, which is not yet connected.

(2) public PipedOutputStream(PipedInputStream in): Creates a piped output stream, which is connected to the piped input stream specified by the parameter in. As shown below:

  1. PipedOutputStream pos=new PipedOutputStream();

3. The PipedOutputStream class methods are:

(1) void close(): means closing the stream.

(2) void connect(PipedInputStream snk): indicates that the piped output stream is connected to the piped input stream.

(3) void flush(): Flushes the output stream and forces any buffered output bytes to be written out.

(4)void write(int b): Writes the specified byte to the pipe output stream.

(5) void write(byte[] b, int off, int len): Writes len bytes of the specified byte array starting at offset off to the piped output stream.

3. Use PipedInputStream and PipedOutputStream to learn about communication between pipeline streams

1. Code implementation:

  1. import java.io.*;
  2.  
  3. public class P22 {
  4. public   static void main(String[] args) throws Exception {
  5. //Create a PipedInputStream object
  6. final PipedInputStream in =new PipedInputStream();
  7. final PipedOutputStream out =new PipedOutputStream();
  8. //Connect the two classes
  9. in . connect ( out );
  10. new Thread(new Runnable(){
  11. public void run(){
  12. BufferedReader br=new BufferedReader(new InputStreamReader(System. in ));
  13. //Read data from the keyboard and write it to the pipe stream
  14. PrintStream ps=new PrintStream( out );
  15. System. out .print(Thread.currentThread().getName()+ "Please enter content:" );
  16. try {
  17. ps.println(br.readLine());
  18. } catch (IOException e) {
  19. e.printStackTrace();
  20. }
  21. }
  22. }, "thread sending data" ).start();
  23. new Thread(new Runnable(){
  24. public void run(){
  25. BufferedReader br=new BufferedReader(new InputStreamReader( in ));
  26. try {
  27. System. out .println(Thread.currentThread().getName()+ "Received content: " +br.readLine());
  28. } catch (IOException e) {
  29. e.printStackTrace();
  30. }
  31. }
  32. }, "thread receiving data" ).start();
  33. }
  34. }

The result of the operation is shown in the figure below:

In the above code, a PipedInputStream object and a PipedOutputStream object are used to connect to generate a communication pipe. Two threads are written, one thread is used for the keyboard input data pipe output stream, and the other thread is used to read the written data in the pipe. These two classes are used to realize the communication between threads.

IV. Conclusion

This article mainly introduces the PipedInputStream class, the PipedOutputStream class, and how to use the PipedInputStream class and the PipedOutputStream class to learn about communication between pipeline streams. The PipedInputStream class is a pipeline input stream that can be connected to a pipeline output stream. The pipeline input stream provides the bytes of all data to be written to the pipeline output stream. PipedInputStream introduces its construction method and methods. The PipedOutputStream class is a pipeline output stream that can be used to write data to a pipeline. PipedOutputStream introduces its construction method and methods. Use the PipedInputStream class and the PipedOutputStream class to learn about communication between pipeline streams. I hope that this article will be helpful to you!

This article is reprinted from the WeChat public account "Java Advanced Learning Exchange", which can be followed through the following QR code. To reprint this article, please contact the Java Advanced Learning Exchange public account.

<<:  Reconnect the campus network after it is disconnected. Use crawlers to fix it!

>>:  Seven factors to consider in network redundancy design

Recommend

The Importance of Switchgear to Data Center Uptime

Among all the electrical and system components th...

5G is gaining popularity, is artificial intelligence going to be "left out"?

In 2018, the popularity of 5G began to rise rapid...

A Brief Analysis of TSN Time Sensitive Network Technology

With the continuous development of industrial int...

What is optical networking? Full explanation

Optical networking is a technology that uses ligh...

A complete guide to using Go language built-in packages!

Introduction to Commonly Used Built-in Packages i...

2018 Trend Forecast and Future Outlook

1. About safety 1. Connected cars are more than j...