Writes the specified bytes to the output buffer. @param b The byte array @param off The offset in the array @param len The number of bytes to write @throws IOException if an I/O error occurs
(byte[] b, int off, int len)
| 344 | * @throws IOException if an I/O error occurs |
| 345 | */ |
| 346 | public void write(byte[] b, int off, int len) throws IOException { |
| 347 | |
| 348 | if (suspended) { |
| 349 | return; |
| 350 | } |
| 351 | |
| 352 | writeBytes(b, off, len); |
| 353 | |
| 354 | } |
| 355 | |
| 356 | |
| 357 | /** |
nothing calls this directly
no test coverage detected