Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 836 Bytes

README.md

File metadata and controls

22 lines (19 loc) · 836 Bytes

Searching Through Text Files

This is a simple project to create a program that will search through text files and locate words or parts of words. This will allow the user to see what lines these words are located on to save to time reading trough themselves. This is a great project for intermediate java students to recreate.

Getting Started

To recreate this program you will need the basic understanding of arrays and array lists, more specifically two dimensional array list, while loops , and for loops ( for each ). Along with accessing and using file objects and handling there exceptions.

Imports

You will need the following imports: import java.io.File import java.io.FileNotFoundException import java.util.ArrayList import java.util.Arrays import java.util.Scanner

Author

  • Tye Borden - Initial Work