将text 文件转为List
Posted w强哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将text 文件转为List相关的知识,希望对你有一定的参考价值。
Integer 类型
ArrayList<Integer> Mlist = new ArrayList<Integer>(); Scanner scM = new Scanner(new File("D://m.txt"));
while (scM.hasNextInt()) { int i = scM.nextInt(); Mlist.add(i); }
/*将list转为数组*/ Integer[] Marray = new Integer[Mlist.size()]; Marray = (Integer[])Mlist.toArray(Marray);
String 类型
ArrayList<String> Nlist = new ArrayList<String>(); Scanner scN = new Scanner(new File("D://n.txt")); while (scN.hasNextLine()) { String i = scN.nextLine(); Nlist.add(i); }
/*将list转为数组*/ String[] Narray = new String[Nlist.size()]; Narray = (String[])Nlist.toArray(Narray);
/*数组转List*/ String[] userid = {"aa","bb","cc"}; List list = new ArrayList(Arrays.asList(userid));
以上是关于将text 文件转为List的主要内容,如果未能解决你的问题,请参考以下文章