Class Goofi
java.lang.Object
|
+--Goofi
- public class Goofi
- extends java.lang.Object
Goofi class search through a website or directory, store all the files within the directory or website into a file call filelist and store all the unique words in all files into a file call wordlist
|
Constructor Summary |
Goofi()
|
|
Method Summary |
void |
DirCreateWordList()
DirCreateWordList create a word linkedlist and a linkedlist of all the files that contain the word, |
static void |
main(java.lang.String[] args)
|
void |
PrintWordList(java.io.Writer writer)
PrintWordList write the word and the files that contain it to the wordlist file |
void |
ReadFileList(java.io.BufferedReader filereader)
ReadFileList read the filelist and create a vector with all the files |
void |
WebCreateWordList()
WebCreateWordList create a word linkedlist and a linkedlist of all the webs that contain the word, |
| Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
Goofi
public Goofi()
ReadFileList
public void ReadFileList(java.io.BufferedReader filereader)
- ReadFileList read the filelist and create a vector with all the files
DirCreateWordList
public void DirCreateWordList()
- DirCreateWordList create a word linkedlist and a linkedlist of all the files that contain the word,
WebCreateWordList
public void WebCreateWordList()
- WebCreateWordList create a word linkedlist and a linkedlist of all the webs that contain the word,
PrintWordList
public void PrintWordList(java.io.Writer writer)
- PrintWordList write the word and the files that contain it to the wordlist file
main
public static void main(java.lang.String[] args)