hello all
I'm practicing for a competitive tournament that will be in my faculty in a few weeks, and thus I encountered a small problem.
The competition restricted the use of java.io.* (except IOException...)
I need to read (from stdin) input, each test case is separated with a blank line. end of test cases - when EOF is found.
I need to find a way to get data from IO, without using java.io
so far, I got this (which works) - it returns a string containing each test case, and null when I'm out of test cases.

public static String getInput() throws IOException {
    int curr=0;
    int prev=0;
    StringBuilder sb = new StringBuilder();
    while (true) {
        curr = System.in.read();
        if (curr == -1) { 
            return null; //end of data
        }
        if (curr == '\r') {
            curr = System.in.read();
        }
        if (curr == prev && curr == '\n') {
            return sb.toString(); //end of test case
        } //else:
        sb = sb.append((char)curr);
        prev = curr;
    }
}

performance (for the IO) is neglected, so I don't care I read only one byte every time.
question: is there more elegant (which means - shorter and faster to code) way to achieve the same thing?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You could try the following and make it efficient by wrapping the System.in.

public static String readLine() throws IOException {
    StringBuilder sb = new StringBuilder();
    for (int ch; (ch = System.in.read()) > 0;)
        if (ch == '\r') continue;
        else if (ch == '\n') break;
        else sb.append(ch);
    return sb.toString();
}

EDIT: On Oracle JVM, System.in is a BufferedInputStream which wraps a FileInputStream which wraps a FileDescriptor. All these are in java.io.

link|improve this answer
BufferedInputStream and InputStream are both java.io . the instructions are specific - the java.io is restricted so we will not be able to use InputStream – amit Mar 24 '11 at 19:11
1  
System.in is an InputStream, so I guess you can't use that either. ;) The method still works without the buffering. – Peter Lawrey Mar 24 '11 at 22:16
feedback

You can try using the java.util.Scanner class if java.util is allowed. It has useful methods for reading in a line, a token or even a number as needed. But it is slower than BufferedReader and possibly slower than using System.in.read() directly.

Since System.in implements the InputStream interface, it might also be some speedup to use System.in.read(byte[] b) to read in the input. This way you can read in a bunch of bytes at a time instead of just the one, which should be faster. But the added complexity of having to code and debug it during the contest might not be worth it.

Edit: Searching the web I found someone discussing using System.in.read(byte[] b) in the UVa forum back when UVa had terrible Java support.

link|improve this answer
to get an instance of Scanner I need a InputStream, which is forbidden – amit Mar 24 '11 at 19:13
use new Scanner (System.in); – user unknown Mar 24 '11 at 19:16
I'm pretty sure it is also forbidden, but I'll try this out. I'll accept this answer if I get approval to use Scanner. – amit Mar 24 '11 at 19:18
@amit gr: To get Scanner you only need to import from java.util. Furthermore, you don't have to create any InputStream, you just use the InputStream instance you already have - System.in. So, you would instantiate by Scanner s=new Scanner(System.in);. If you can use System.in elsewhere, I don't see any reason why it can't be used here. – MAK Mar 24 '11 at 19:19
i'll check this out, and will accept this answer if it possible. thanks for the help anyway :) – amit Mar 24 '11 at 19:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.