Method write(byte[] b, int off, int len)
Return type: void
Member of: java.io.DataOutputStream
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 m_DataOut.write(Modbus.COIL_ON_BYTES, 0, 2);
2 output.write(crlf, 0, 2) ;
3 m_DataOut.write(m_Coils.getBytes(), 0, m_Coils.byteSize());
4 out.write(description,0,description.length);
5 serverOut.write(b, 0, b.length);
6 write(b, 0, b.length);
7 write(b, 0, b.length);
8 out.write(buffer, 0, count);
9 output.write(data, 0, len);
10 doo.write(cont, 0, cont.length);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.