  |
OutputStream |
  |
Scrittura bloccante |
void write(int b) throws IOException
// vengono scritti gli 8bit pių bassi
// č int per evitare un cast
void write (byte[] buf
[,int offset, int count])
throws IOException
// scrive buf.lenght caratteri
void flush()
// svuota il buffer
void close()
// chiude lo stream
|