What is the most efficient way to do this?

link|improve this question

-1 Because you are asking for the most efficient instead of the simplest, cleanest, easiest to understand way. Why are so many people wasting so much time on microoptimization? – starblue Oct 14 '09 at 12:21
2  
starblue, "most efficient" might mean "easiest to write and maintain", which probably implies simplest and cleanest. The word efficient doesn't have to refer to performance. – Thomas Owens Oct 14 '09 at 12:37
1  
+1 Because sometimes you have done your homework (profiling) and really need to do this optimization. Question is generally relevant, even not necessarily in OPs case. – Daren Thomas Oct 14 '09 at 12:37
feedback

3 Answers

up vote 8 down vote accepted
byte[] byteArray = new byte[byteList.size()];
for (int index = 0; index < byteList.size(); index++) {
    byteArray[index] = byteList.get(index);
}

You may not like it but that’s about the only way to create a Genuine™ Array® of byte.

As pointed out in the comments, there are other ways. This one uses an iterator.

byte[] byteArray = new byte[byteList.size()];
int index = 0;
for (byte b : byteList) {
    byteArray[index++] = b;
}
link|improve this answer
yes that's what I thought...You're right, I don't link it. – mysomic Oct 14 '09 at 10:42
there is not ONLY one way to program something! what about using an Iteraotr or an ListIterator? – Carlos Heuberger Oct 14 '09 at 10:52
You’re absolutely right. Added an Iterator-based example. :) – Bombe Oct 14 '09 at 10:58
splitting hairs :-) – mysomic Oct 14 '09 at 11:14
Yes, absolutely. ;) – Bombe Oct 14 '09 at 11:50
feedback

The toArray() method sounds like a good choice.

Update: Although, as folks have kindly pointed out, this works with "boxed" values. So a plain for-loop looks like a very good choice, too.

link|improve this answer
well its one way, but will produce a Byte[] which requires individual element unboxing. – mysomic Oct 14 '09 at 10:36
1  
All byte values are stored as immutable object (see today.java.net/pub/a/today/2005/03/24/autoboxing.html). So the unboxing is (probably) negligible in terms of performance. It would be interesting to measure though. Well, not interesting. – Brian Agnew Oct 14 '09 at 10:39
and you'll need unboxing anyway if you want (primitive) bytes – Carlos Heuberger Oct 14 '09 at 10:49
1  
@Brian: and you also need to consider the space overhead. A large Byte[] will occupy at least 4 times the space of a byte[] for the same information content. Maybe more, depending on how the original Byte values were created. – Stephen C Oct 14 '09 at 12:10
feedback

Using Bytes.toArray(Collection<Byte>) (from Google's Guava library.)

Example:

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import com.google.common.primitives.Bytes;

class Test {
    public static void main(String[] args) {
        List<Byte> byteList = new ArrayList<Byte>();
        byteList.add((byte) 1);
        byteList.add((byte) 2);
        byteList.add((byte) 3);
        byte[] byteArray = Bytes.toArray(byteList);
        System.out.println(Arrays.toString(byteArray));
    }
}

Or similarly, using PCJ:

import bak.pcj.Adapter;

// ...

byte[] byteArray = Adapter.asBytes(byteList).toArray();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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