I'm a writing a program that will determine the number of lines, characters, and average word length for a text file. For the program, the specifications say that the file or files will be entered as a command line argument and that we should make a TestStatistic object for each file entered. I don't understand how to write the code for making the TestStatistic objects if the user enters more than one file.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The most basic way to process command line arguments is:
The preferable way is to use something that manages the command line arguments for you. I suggest JSAP: The Java Simple Argument Parser. |
|||||||||||
|
|
It sounds like you simply need to iterate through your command line args and produce a TestStatistic object for each. e.g.
|
||||
|
|
Here's an expansion on other general answers, flushed out a bit further.
|
|||
|
|
|
You can also use something like Commons CLI to process command line. |
|||||
|