Is there any Java library for command line, env variables , property files parsing? [closed]

You could take a look at JSAP (the Java Simple Argument Parser).
It can be used for command line argument parsing. I am unaware whether it can do the rest or you’d have to build it yourself on top of it.
http://www.martiansoftware.com/jsap/

Leave a Comment