org.apache.axis.utils

Class IOUtils

public class IOUtils extends Object

Utility class containing IO helper methods
Method Summary
static intreadFully(InputStream in, byte[] b)
Read into a byte array; tries to ensure that the the full buffer is read.
static intreadFully(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.

Method Detail

readFully

public static int readFully(InputStream in, byte[] b)
Read into a byte array; tries to ensure that the the full buffer is read. Helper method, just calls readFully(in, b, 0, b.length)

See Also: (java.io.InputStream, byte[], int, int)

readFully

public static int readFully(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.

UNKNOWN: the number of bytes read, or -1 if the end of file is reached before any bytes are read

Copyright B) 2005 Apache Web Services Project. All Rights Reserved.