As the title says, I need to know how many bytes the file has that's "behind" an InputStream. I don't want to download all bytes and count (takes to long). I just need to know how many bytes the file has.
Like this:
int numberOfBytes = countBytes(inputStream);
So, I need an implementation for countBytes(InputStream inputStream)