this is my code snippets to capture data from a textfile
try{
// to store the stopwords
File file8 = new File("stoplist3.txt");
FileInputStream stopStream = new FileInputStream (file8);
InputStreamReader reader8 = new InputStreamReader(stopStream);
StreamTokenizer stopToken = new StreamTokenizer(reader8);
List stopWordList = new ArrayList();
//stopwords up to here
i don't have any problem with the code.this is embarrassing but here goes...where do i put the "stoplist3.txt" in order for netbeans to be able to retrieve it's position?
Thanks in advance.