1.

Write the process to input data using Bufferedreader class​

Answer» INSTANTIATE an InputStreamReader class bypassing your InputStream object as a parameter.Then, create a BufferedReader, bypassing the above obtained InputStreamReader object as a parameter.Now, read data from the CURRENT reader as String USING the READLINE() or read() method.


Discussion

No Comment Found