vote up 0 vote down star

hi all, i'm working on a network programming assignment about writing a simple IM system (pretty much like the simplest version of windows messenger).

the spec specifies that i must send over 4 fields of data in a single datagram packet, those are: To From Type Message where type refers to message type, implemented as a user defined enum class.

I would like to be taught how to pack all these datas into a single packet.

Thx.

UPDATE: thx for the help so far, but say i have String sentence and String From the normal way to patch the packet individually would be byte[] sendData = new byte [256]

sendData = sentence.getBytes(); but how exactly can i append the "from" string to sendData along with the sentence string?

flag

4 Answers

vote up 0 vote down check

Briefly, what you need to do is:

  1. create an object (class) which contains your 4 fields (from/to/enum/message)
  2. serialise this. It has to implement Serializable. See other solutions here for how to serialise
  3. convert to a byte array and send down the socket (see elsewhere for details)

At the other end you'll read this bytestream, deserialise and cast it to an instance of your class defined in 1. above.

By creating the one object containing the 4 fields and serialising this object, this allows you to send all four fields together (I get the impression that this is the stumbling block?).

Note that datagrams will have size limits imposed by the network transport layers, but for this application I suspect that's not a problem.

link|flag
vote up 1 vote down

You simply append them before passing them to the network interface. Something along the lines of:

byte[] buff = new byte[256];
// Add al your fields here to buff.
DatagramPacket packet = new DatagramPacket(buff, buff.length, address, 1234);
socket.send(packet);

If they're not all strings, you'll need to encode them as such.

link|flag
simple though that might be, without delimiters it could be tricky to turn the single field back into the original four fields... – Alnitak Apr 18 at 7:51
Or fixed-length fields. I assumed that would be covered by the spec mentioned. The actual insertion and extraction depends on that spec so, if more info is needed, it will need to be provided. – paxdiablo Apr 18 at 7:55
that comment was written just before you changed to a byte array when all you had was four concatenated strings. It still holds true, though... – Alnitak Apr 18 at 8:03
vote up 0 vote down

There are plenty of options for encoding the data, all of which come down to putting the four fields into one data structure, and then sending that all in one go.

The important part is that the encoding needs to show which of the four fields is at which point in the packet, otherwise the far end won't be able to decode it reliably.

link|flag
For homework at this beginner level, I'd be using fairly simple data structures such as fixed length or a simple delimiter. You'll almost certainly be red-flagged as a potential plagiarist/cheat if you come up with a complicated solution like XML or serialization. – paxdiablo Apr 18 at 8:00
yep - I did put DIY first, though :) – Alnitak Apr 18 at 8:04
Oh, I see, at first I just assumed it was a new acronym I hadn't heard of yet (so many floating around). Just realized now it was the old favorite DIY :-) – paxdiablo Apr 18 at 8:06
1  
Java serialization is the exact opposite of a "complicated solution" - it's built into the language and requires less code than any of the others. – Michael Borgwardt Apr 18 at 9:36
serialization is the way to go :) makes the solution really simple. And trust me, he/she is not going to get flagged as plagiarist for using serialization. That's the sort of stuff they'd expect him to know already at this level (if he/she's doing Java networking) – MasterPeter Apr 18 at 10:14
vote up 1 vote down

You can send any Serializable object using something like this.

ByteArrayOutputStream buffer = new ByteArrayOutputStream();
ObjectOutputStream out = new ObjectOutputStream(buffer);
out.writeObject(objectYouWantToSend);
out.close();
buffer.close();
DatagramPacket packet = new 
    DatagramPacket(buffer.toByteArray(), 
                   buffer.size(), 
                   InetAddress.getByName(...),
                   portNumber);
socket.send(packet);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.