Microsoft SDK for Java

write

This method of the SystemOutputStream Class writes bytes to the output stream from an array, starting at a specified offset in the array.

Syntax

public void write(byte b[], int off, int len) throws IOException;

Parameters

b The array to write from.
off The offset in the array, where the first byte to write is located.
len The number of bytes to write.

Exceptions

IOException if an error occurs while attempting to write to the output stream.

© 1999 Microsoft Corporation. All rights reserved. Terms of use.