Text File Stemmer
MUST USE THE STARTER CODE!
Specs of HW but this is STARTER CODE FROM github to import to Eclipse for best set up:
https://github.com/usf-cs272-fall2021/homework-TextFileStemmer-template.git
class for parsing and stemming text and text files into collections of stemmed words- NEED TO PASS ALL JUNIT TESTS IN PROVIDED TEST CLASS
-create a class that is able to clean and parse text into stemmed words. Use UTF8
and try-with-resources when writing your files. Do not use the java.io.File
class since TextParser
class is already provided for.