본문 바로가기

개발 개발/자바

byte <-> ArrayList


 ArrayList -> Byte[] -> ArrayList 이걸 원하시죠?

 

API로 바로 설명드립니다.

 

ArrayList arrayList 는 있다고 가정..

 

Byte[] bytes = (Byte[]) arrayList.toArray(); //  ArrayList -> Byte[]

 

arrayList = new ArrayList(Arrays.asList(bytes )); // Byte[] -> ArrayList

 


만약 프리미티브 byte[]로 전환하고자 하신다면, Bytes[X].byteValue() 를 X값을 루프를 돌면서 복사해주면됩니다.