DEV Community

Cover image for Console Application Input Library in Java.
Kooin-Shin
Kooin-Shin

Posted on • Updated on

Console Application Input Library in Java.

Hi all,
I will introduce a library to build console application with more easier, and with this library, you can make fine interactive methodology on your console application.

You can define queries for user input using this library on your application and later, you able to use the input data in your code.

All queries are managed with YAML file and you can redefine message content of it.
You can manage trigger process by implementing ConsoleTrigger interface and treat user input data on this object.

More detail thing of this library to get, you can have it to visit below GitHub project.

Dependencies

Maven dependency

<!-- https://mvnrepository.com/artifact/io.github.9ins/console-input-manager -->
<dependency>
    <groupId>io.github.9ins</groupId>
    <artifactId>console-input-manager</artifactId>
    <version>1.0.1</version>
</dependency> 
Enter fullscreen mode Exit fullscreen mode

Gradle dependency

// https://mvnrepository.com/artifact/io.github.9ins/console-input-manager
implementation group: 'io.github.9ins', name: 'console-input-manager', version: '1.0.1' 
Enter fullscreen mode Exit fullscreen mode

GitHub link: [console-input][https://github.com/9ins/console-input-manager]

Latest comments (0)