摘要: 数组转成list 第一种: String[] userid = {"aa","bb","cc"}; List<String> userList = new ArrayList<String>(); Collections.addAll(userList, userid); 第二种: String[] 阅读全文
posted @ 2016-08-02 11:09 门罗的魔术师 阅读(245) 评论(0) 推荐(0) 编辑