摘要: 正文: 1,String转List //常见的为逗号分隔 String str = "a,b,c"; List<String> list1 = Arrays.asList(str.split(",")); //[a, b, c] List<String> list2 = Arrays.asList( 阅读全文
posted @ 2021-12-17 16:10 show-code 阅读(5636) 评论(0) 推荐(0) 编辑