资 源 简 介
Overview
cltool4j is a simple framework intended to speed development of
command-line tools in Java.
Some systems, especially scripting languages, handle argument parsing and I/O
intrinsically, leaving the developer to concentrate on the actual
task. Java provides a huge array of libraries and tools, but simple
argument and I/O handling in Java require considerably more code than
in Awk, Python, Perl, etc. So a Java developer is often torn between
quick development in a scripting language and desire to reuse existing
Java code (without resorting to copy-and-pasting (yet again) the
boilerplate code from previous projects).
The fundamental design goal of cltool4j is to simplify development of
command-line Java tools.
The style" of tool comes from the standard Unix toolset: * Input is read from any files specified on the command-line, or from STDINif no input files are specified. * Output is written to STD