How can I receive a file as a command-line argument?
|
feedback
|
|
Just the path of the file is passed, inside your program use the Java File class to handle it This takes the first parameter as the file path:
| |||||||||||
feedback
|
|
in Java, the the array
everything the user types after the class name is considered to be a parameter. for example:
now your program has received two parameters: bar and baz. those parameters are stored in the array so, back to your question. the user may inform a file name as a command line parameter and you can read that value through the argument of the here's a full example of how to use command line parameters:
this class will parse the parameters informed by the user. if he hasn't type anything, the class will print the message "no arguments were given." if he informs any number of parameters, those parameters will be shown on the screen. so, running this class with the two examples I've given on this answer, the output would be:
| |||
|
feedback
|
|
In my opinion, best practice to try to detect args == 0 and return a list of help commands on how to use the program if no arguments are provided. | |||
|
feedback
|