Your command line should look like this:
java -cp {name_of_jar} {name_of_class} {name_of_csv}
It looks like you are not supplying the .csv file name (what will be in args[0])?
The above assumes that the main class is not defined in your .jar manifest. if so, use:
java -jar {name_of_jar} {name_of_csv}
args[] , btw , " .csv" , /.