Re: [Neo] Investigating railway network application using Neo4j

2009-06-30 Thread Moandji Ezana
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.

Re: [Neo] Investigating railway network application using Neo4j

2009-06-30 Thread Moandji Ezana
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