An open API service indexing awesome lists of open source software.

https://github.com/lizainslie/jconsole

A Visual I/O console for Java
https://github.com/lizainslie/jconsole

console gui java

Last synced: 26 days ago
JSON representation

A Visual I/O console for Java

Awesome Lists containing this project

README

          

# RailConsole
_A visual I/O console for Java_

## Adding to Maven
Add the following to your `pom.xml`
```xml


dmrail-nexus
DMRail Games Repo
http://nexus.dmrail.games/repository/maven-releases/

```

And then add the following dependency:
```xml

me.railrunner16
RailConsole
{version you want to use}

```

## Usage

### Example:
```java
import me.railrunner16.console.Console;

public class Main {
public static void main(String[] args) {
Console console = new Console(20, "Welcome!");
console.run();

String s = console.promptString("Test String: ");

System.out.println(s);
}
}
```