Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
5answers
8k views

Eclipse reading stdin (System.in) from a file

Is it possible for Eclipse to read stdin from a file?
4
votes
3answers
900 views

Writing data to System.in

In our application, we expect user input within a Thread as follows : BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); I want to pass that part in my unit test so that I ...
2
votes
1answer
89 views

How to clear/reset/open an input stream so it can be used in 2 different methods in Java?

Here's the code: package testpack; import java.io.*; public class InputStreamReadDemo { private void readByte() throws IOException { System.out.print("Enter the ...
1
vote
1answer
99 views

Closing BufferedReader and System.in

Reader rdr = new InputStreamReader(System.in); BufferedReader br = new BufferedReader(rdr); String s; s = br.readLine(); br.close(); Scanner sc = new Scanner(System.in); s = sc.nextLine(); ...
1
vote
1answer
149 views

Ant ignores input from stdin

I'm trying to get command line input into a running java program that I started with ant. However, nothing of what I type in the terminal is redirected to System.in of the java process. Is this ...
1
vote
5answers
219 views

Reading in from System.in - Java

I am not sure how you are supposed to read in from system input from a Java file. I want to be able to call java myProg < file Where file is what I want to be read in as a string and given to ...
1
vote
3answers
175 views

I'm trying to take an input using Scanner(System.in) but it's not letting me. Help!

So I'm trying to take an input from a user using Scanner(System.in) but when i try to type something into the console it won't let me. Can anyone help? Function.show(); Scanner input = new ...
1
vote
1answer
428 views

An alternative to reading input from Java's System.in

I’m working on the UVa Online Judge problem set archive as a way to practice Java, and as a way to practice data structures and algorithms in general. They give an example input file to submit to the ...
1
vote
2answers
572 views

Java: use NIO with System.in

Is it possible to use NIO with System.in? I would like to somehow treat 'stdin' as a selectable channel. Has anyone found a way to do this?
0
votes
1answer
77 views

Is there a way to reopen an input stream with withReader? - Groovy

I know that the input stream is automatically closed at the end of this kind of block in Groovy: def exec = "" System.in.withReader { println "input: " exec = it.readLine() } but ...
0
votes
2answers
454 views

Scanner + System.in stop condition

I'm reading a file with Scanner + System.in. My command in Linux looks like: cat -A test.txt | java -jar test.jar I'm reading input like: Scanner input = new Scanner(System.in); while ...