Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 741 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 741 Bytes

#Compile:

  • javac URLFetcher.java

#Execute:

  • Command Format: java URLFetcher url_list.txt start_index end_index save_as

where:

  • url_list.txt is the file containing the the list of URLs (one URL per line)
  • start_index is the initial line number in the URL list (put 0 to start from the first line)
  • end_index is the last line number in the URL list
  • save_as is the file extension with which the content is saved (e.g. txt)

Suppose you got a url list of 20 URLs in a file list.txt and you want to fetch the content of the last 15 and save content in a text file. The command will be: java URLFetcher list.txt 6 20 txt. The fetched content will be saved under a directory fetched/.