public class IOUtils
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
static int |
readFully(java.io.InputStream in,
byte[] b)
Helper method, just calls readFully(in, b, 0, b.length)
|
static int |
readFully(java.io.InputStream in,
byte[] b,
int off,
int len)
Same as the normal in.read(b, off, len), but tries to ensure that
the entire len number of bytes is read.
|
public static int readFully(java.io.InputStream in, byte[] b) throws java.io.IOException
java.io.IOException
public static int readFully(java.io.InputStream in, byte[] b, int off, int len) throws java.io.IOException
If the end of file is reached before any bytes are read, returns -1. Otherwise, returns the number of bytes read.
java.io.IOException
Copyright © 2014 Open Microscopy Environment