i m currently dealing with 20 txt files, the task is to count words frequency for each word, and then output the result into a single txt file... for example: word --"news" appears 47 times in 20 files. for now, i only manage to get all 20 files read into my program(i stored all file data into one single -- (String docBus), but i have need help with extracting words(word by word) from (String docBus) into a String Array... btw, the files contains punctuation,numbers...etc...but all i need is to count words frequency...so i need to avoid those punctuation,numbers in my program... here is my code so far...need help ...thx...
public class Count extends javax.swing.JFrame {
ArrayList<String> fileBusName = new ArrayList<String>();
String docBus = "";
private void returnBusFilenName(){
String str = "";
for(int i= 1; i <= 20; i++){
str = "nlg/bus" + i + ".txt";
fileBusName.add(str);
}
}
private String getFile(String file){
String strLine = "", str = "";
try{
BufferedReader in = new BufferedReader(new FileReader(file));
while((strLine = in.readLine()) != null){
str += strLine + "\n ";
}
in.close();
}catch(Exception e){
}
return str;
}
private void getDocBus(){
returnBusFilenName();
for(int i=0; i<=19; i++){
docBus = docBus + getFile(fileBusName.get(i));
}
}