Skip to content
Advertisement

make picocli parse local date format

PicoCLI accepts 2019-04-26 as input for a LocalDate variable, but it does not accept the German Date format like 26.04.2019.
For that you need:

JavaScript

How do you tell to PicoCLI to use this formatter and not depend on US date input?

Advertisement

Answer

You can define a custom type converter, either for a specific option, or globally for all options and positional parameters of a certain type.

Often the most compact way to register a custom converter is with a lambda expression:

JavaScript

If you need to set a converter for a specific option, you will need to define a class and specify that class in the @Option(converter = X.class) annotation of that option.

Note that it is okay to throw an exception from the ITypeConverter.convert method if the user input was invalid. Picocli will catch this exception and display an error message to the end user.

For example:

JavaScript

Here is an example that uses this stricter converter to demonstrate:

  • error checking
  • registering a global type converter for all java.util.Date options
  • invalid input results in picocli showing an error message followed by the usage help message
JavaScript

The first invocation with invalid input -d=55.55.55 prints the following output:

JavaScript

The second invocation, where we pass --default=Gennaio.01.2020 to confirm that the global type converter now handles dates in our custom Italian format, gives the following output:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement