Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an ArrayList<String> that i want to send through UDP but the send method requires byte[].

Can anyone tell me how to convert my ArrayList<String> to byte[]?

Thank you!

share|improve this question

2 Answers

It really depends on how you expect to decode these bytes on the other end. One reasonable way would be to use UTF-8 encoding like DataOutputStream does for each string in the list. For a string it writes 2 bytes for the length of the UTF-8 encoding followed by the UTF-8 bytes. This would be portable if you're not using Java on the other end. Here's an example of encoding and decoding an ArrayList<String> in this way using Java for both sides:

// example input list
List<String> list = new ArrayList<String>();
list.add("foo");
list.add("bar");
list.add("baz");

// write to byte array
ByteArrayOutputStream baos = new ByteArrayOutputStream();
DataOutputStream out = new DataOutputStream(baos);
for (String element : list) {
    out.writeUTF(element);
}
byte[] bytes = baos.toByteArray();

// read from byte array
ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
DataInputStream in = new DataInputStream(bais);
while (in.available() > 0) {
    String element = in.readUTF();
    System.out.println(element);
}
share|improve this answer
Thank you! It worked! – jboy Apr 11 '11 at 9:39
You might like to send the length first as available() is not generally a good method to use. – Peter Lawrey Apr 11 '11 at 12:56

If the other side is also java, you can use ObjectOutputStream. It will serialize the object (you can use a ByteArrayOutputStream to get the bytes written)

share|improve this answer
Thank you! It worked! – jboy Apr 11 '11 at 9:38
2  
@jboy feel free to mark the answer as accepted :-) – Bozho Apr 11 '11 at 9:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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