Can anyone help to code java to process each word file in a folder having multiple files.
|
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.
|
Commons IO is one way, but you can do this without any libraries:
You'd call this like so: |
||||
|
|
|
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 :
You can create a
where resName is a classpath-relative path to your directory |
|||||||
|
|
You can use file filter (non-recursive example below):
|
|||
|
|