String[] aArr = ...;
String[] bArr = ...;
List<String> images = Arrays.asList(aArr);
images.addAll(Arrays.asList(bArr));
throws the following exception at addAll and also raises the same exception if you add the elements of the second list individually.
java.lang.UnsupportedOperationException
09:06:57,156 ERROR [STDERR] at java.util.AbstractList.add(AbstractList.java:
131)
09:06:57,156 ERROR [STDERR] at java.util.AbstractList.add(AbstractList.java:
91)
How should I rectify this?