常常在使用Arrays.asList()将数组转化为集合后调用add(),remove()这些方法时出现java.lang.UnsupportedOperationException异常。这是由于:
Arrays.asLisvt() 返回java.util.Arrays$ArrayList, 而不是ArrayList。Arrays$ArrayList和ArrayList都是继承AbstractList,remove,add等方法在AbstractList中是默认throw UnsupportedOperationException而且不作任何操作。ArrayList 重新了这些方法来对list进行操作,但是Arrays$ArrayList没有重写 remove(int),add(int)等方法,所以抛出UnsupportedOperationException异常。
解决方法是使用Iterator迭代;或者转换为ArrayList:
String pid ="7";
List<String> strings = Arrays.asList("#51#50#35#47#7#".split("#"));
ArrayList<String> pids = new ArrayList<>(strings)
pids.remove(0);
pids.remove(pid);