Eclipse reading stdin (System.in) from a file
问题 Is it possible for Eclipse to read stdin from a file? 回答1: Pure Java You can redirect System.in with a single line of code: System.setIn(new FileInputStream(filename)); See System.setIn(). Eclipse config In Eclipse 4.5 or later, the launch configuration dialog can set System.in to read from a file. See the announcement here. 回答2: [Update] As it has been pointed out in the comments, this answer was misleading so I have updated it to correct the errors. [/Update] On bash or command prompt you