How to manipulate a data buffer
Article Metadata
A Java ME tip illustrating an alternative way to manipulate the data buffer using the setData( ) method to replace the Datagram's data buffer with a new one.
byte[] dataBytes = "Hello, world\n".getBytes( );
dgram.setData(dataBytes, 0, dataBytes.length);
sender.send(dgram);


(no comments yet)