Quantcast
Channel: How do I parse command line arguments in Java? - Stack Overflow
Viewing all articles
Browse latest Browse all 24

Answer by Jakub for How do I parse command line arguments in Java?

$
0
0

I wouldn't recommend using Apache Common CLI library, as it is non-threadsafe. It uses stateful classes with static variables and methods to do internal work (e.g. OptionBuilder) and should only be used in single-threaded strongly controlled situations.


Viewing all articles
Browse latest Browse all 24

Trending Articles