Just about the simplest you can get:
public class ConsoleTest {
public static void main(String[] args) {
while(true) {
String input = System.console().readLine();
System.out.println(input);
}
}
}
Obviously, you'll have to kill the program manually.
On Tue, Jun 30, 2009 at 1:25 PM, Bert FitiƩ wrote:
> Btw, what is the best way to get user input into Neo4j? The request
> for the outgoing paths from station Abc is now hard-coded; how could I
> enter the station on the command line?
>
I don't know if there's already a project to do this, but t
2 matches
Mail list logo