5

Is there a way to ask a DataInputStream, if it has content to read? .readByte() will just hang it, waiting for a byte to be read :( Or do I always have to send a Dummy-Byte, to make sure it always sees something?

Pwnie2012
  • 143
  • 1
  • 7

3 Answers3

5
dis.available();

Returns: an estimate of the number of bytes that can be read (or skipped over) from this input stream without blocking.

Is this what you looking for?

also check answers here. You might get even more informations. "available" of DataInputStream from Socket

Community
  • 1
  • 1
Tomas Bisciak
  • 2,801
  • 5
  • 33
  • 57
  • then try to read and then unread data from it.If it really doesnt return anything.Then its empty and available(); works like it shoud – Tomas Bisciak Jan 19 '14 at 12:12
  • 1
    If you click that link you shoud get pretty good idea how to do it in loop,Also there is answer that explain why it returns 0 in some case,check documentation for *dis* as well. – Tomas Bisciak Jan 19 '14 at 12:15
  • Ok now using a PushBackInputStream and the dis, pbs for the available, dis for rest ;) – Pwnie2012 Jan 19 '14 at 12:18
3

Look at

 public int available() throws IOException

according to docs it "Returns an estimate of the number of bytes that can be read"

so you should call dis.available()

marek.kapowicki
  • 674
  • 2
  • 5
  • 17
0

When reading past the end of the file, an EOFException is thrown. So you can tell there's no more data to read. For examle:

 DataInputStream inputStream = new DataInputStream(new FileInputStream(file));
    int data = 0;
    try {
        while (true) {
            data += inputStream.readInt();
        }
    } catch (EOFException e) {
        System.out.println("All data were read");
        System.out.println(data);
    }