今天在对CopyOnWriteArrayList进行排序操作时代码报错,错误信息如下:
java.lang.UnsupportedOperationException
at java.util.concurrent.CopyOnWriteArrayList$COWIterator.set(CopyOnWriteArrayList.java:1049)
at java.util.Collections.sort(Collections.java:159)
at com.cdsoft.epcp.android.InstanceManagerAndroidController$1.run(InstanceManagerAndroidController.java:532)
具体原因是CopyOnWriteArrayList不支持Collections.sort()方法。
我的解决方法如下:
List<String> endTimeList = new CopyOnWriteArrayList<>();
List<String> endTimeTempList = new ArrayList<>(endTimeList);
Collections.sort(endTimeTempList);
其他方法参考文章:
1. http://blog.csdn.net/u011001723/article/details/46431575;
最新评论
本来在正常下载,突然就不能下载,并出现报错:a socket operation was attempted to an unreachable network。请问是什么原因呢
试了,还是不行,能不能更新一下
试了,确实不行,能不能更新一下
也推荐一下我自己写的 https://twitdown.com