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
- Host: GitHub
- URL: https://github.com/lizainslie/jconsole
- Owner: LizAinslie
- Created: 2019-08-19T01:24:58.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-20T00:32:09.000Z (about 6 years ago)
- Last Synced: 2025-06-07T06:39:51.865Z (4 months ago)
- Topics: console, gui, java
- Language: Java
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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:
```xmlme.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);
}
}
```