how do i capture websites visited and log them in a file?
Printable View
how do i capture websites visited and log them in a file?
Obtain a URL given that link and get an InputStream from the URL object (aamof, it opens a connection (a URLConnection) and uses that object to get the stream). Beware though, a lot of pages use Javascript to generate the final page content and you won't read that from the InputStream.
kind regards,
Jos