What are the advantages of using buffered streams? Are the following statements correct?
BufferedInputStream input1 =
new BufferedInputStream(new FileInputStream("t.dat"));
DataInputStream input2 = new DataInputStream(
new BufferedInputStream(new FileInputStream("t.dat")));
DataOutputStream output = new DataOutputStream(
new BufferedOutputStream(new FileOutputStream("t.dat")));
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.