Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can anyone help to code java to process each word file in a folder having multiple files.

share|improve this question
6  
Can you please explain exactly what you want to do, and exactly which points you are stuck on? – tgdavies Mar 8 '11 at 12:29

closed as not a real question by Tim Cooper, jzd, Joachim Sauer, Erick Robertson, Kyle Rozendo Mar 8 '11 at 18:56

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

Commons IO is one way, but you can do this without any libraries:

public void processFilesIn(File folder){
    File[] contents = folder.listFiles();

    int file = 0;
    while(file < contents.length){
        process(contents[file]);
        file++;
    }
}

private void process(File f){
    if(f.isDirectory()){ //Recursively descend into any folders - optional.
        processFilesIn(f);
    }
    else if(canProcess(f)){ //Write boolean canProcess(File f) so you don't try to process files you aren't interested in.
        //do processing
    }
}

You'd call this like so: processFilesIn(new File("/path/to/folder"));

share|improve this answer

To work on all files in a directory you can use the apache commons IO library . Listing all files in a directory filtered by the extension (if you want to have the word files only) looks like this :

URI dirUri = "your dir as uri";
Collection<File> files = FileUtils.listFiles(dirUri,new String[] {"doc"}, false);

for(File file : files){
    process(file);
}

You can create a URIfrom a directory name by using

YourClass.class.getResource(resName);

where resName is a classpath-relative path to your directory

share|improve this answer
-1 Why use Apache Commons when this functionality exists in the standard Java libraries? – Erick Robertson Mar 8 '11 at 12:54
1  
@Erik Robertson : because its concise. other solurions need extra classes or loops while the commonsIO solution is a single line. its not like its an esoteric lib no one has ever heard about. most probelms can be solved with vanilla SE alone, with more or less extra work. do you dislike commons IO for a reason? -1 seems kinda stern btw. – kostja Mar 8 '11 at 13:05

You can use file filter (non-recursive example below):

FilenameFilter filter = new FilenameFilter() {
    public boolean accept(File dir, String name) {
        return name.endsWith(".doc");
    }
};

for (File f : new File("c:").listFiles(filter)) {
    processWordFile(f);
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.