当前位置 : 主页 > 编程语言 > java >

字符串转list 实现List集合中数据逆序排列实现List集合中数据逆序排列

来源:互联网 收集:自由互联 发布时间:2022-06-23
字符串转list /** * 字符串转list */ public static ListString strSplitToList(String str, String regex) { ListString list = new ArrayList(); if (str != null) { if (str.contains(regex)) { Collections.addAll(list, str.split(regex)); } el

字符串转list   

/**
* 字符串转list
*/
public static List<String> strSplitToList(String str, String regex) {
List<String> list = new ArrayList<>();
if (str != null) {
if (str.contains(regex)) {
Collections.addAll(list, str.split(regex));
} else {
list.add(str);
}
}
return list;
}

实现List集合中数据逆序排列

Collections.reverse(list); 实现list集合逆序排列



上一篇:listView EditText编辑后自动保存
下一篇:没有了
网友评论