码迷,mamicode.com
首页 > 其他好文 > 详细

将text 文件转为List

时间:2016-11-19 03:35:28      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:text   string   oar   arraylist   next   class   exti   scanner   round   

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

标签:text   string   oar   arraylist   next   class   exti   scanner   round   

原文地址:http://www.cnblogs.com/wjqboke/p/6079691.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!