Most of the time, we do get available bytes in one stroke by calling read() API in InputStream.
long length = is.available();
byte[] bytes = new byte[(int) length];
is.read(bytes);
System.out.println(new String(bytes));
The above given code may not work for InputStream which reads data from socket. Means, this will not read full data from the stream, reason could be
- network delay in transmitting content
- mounted filesystem unlinked
- message size is exceeds TCP window size
- etc.,
Hence, the following code will make sure and helps us to check whether all the bytes are received or not.
public static byte[] getBytesFromInputStream(InputStream is)
throws IOException {
// Get the size of the file
long length = is.available();
if (length > Integer.MAX_VALUE) {
// File is too large
}
// Create the byte array to hold the data
byte[] bytes = new byte[(int) length];
// Read in the bytes
int offset = 0;
int numRead = 0;
while (offset < bytes.length
&& (numRead = is.read(bytes, offset, bytes.length - offset)) >= 0) {
offset += numRead;
}
// Ensure all the bytes have been read in
if (offset < bytes.length) {
throw new IOException("Could not completely read file ");
}
// Close the input stream and return bytes
is.close();
return bytes;
}
Read more : Reverse Reading
5 comments:
is.available() returns the number of bytes that can be read without blocking. It's rarely the total number of content bytes.
consider the following solution:
public static byte[] getFileBytes(InputStream is) throws IOException {
ByteArrayOutputStream bout = new ByteArrayOutputStream();
BufferedInputStream fin = new BufferedInputStream(is);
byte buf[] = new byte[8192];
int ret = 0;
while ((ret = fin.read(buf)) != -1) {
bout.write(buf, 0, ret);
}
fin.close();
return bout.toByteArray();
}
You saved my life with this piece of code man. Thanks.
Nice tip but this can be achieved in 3 lines by using Guava library as shown in 5 ways to convert InputStream to String in Java
not working ofcours, you're making the same mistake by using avaliable()!
Post a Comment