Question: Modify this chapters WebPageReader program to read a web page through a buffer. Instead of importing InputStream, import BufferedReader and InputStreamReader. Instead of: use: And
Modify this chapter’s WebPageReader program to read a web page through a buffer.
Instead of importing InputStream, import BufferedReader and InputStreamReader.
Instead of:

use:

And instead of:

use:

instream = webIn = connection.getInputStream(); new Scanner (instream);
Step by Step Solution
3.43 Rating (156 Votes )
There are 3 Steps involved in it
To modify the WebPageReader program as described you need to replace the use of Scanner to read from an InputStream with a BufferedReader that wraps a... View full answer
Get step-by-step solutions from verified subject matter experts
