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

读取文件内容返回List<String>类型

时间:2017-01-10 07:57:06      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:读取文件   ntb   slist   res   highlight   div   src   null   简单   

文件内容格式:

string1

string2

String 3

……

很简单,两句话

String content = new String(Files.readAllBytes(Paths.get(".\\src\\main\\resources\\content")));
List<String> sequences = Arrays.asList(content.split("\r\n"));

还有一个办法,相对啰嗦一点:

  String path= ".\\src\\main\\resources\\content";

  BufferedReader contentbr = new BufferedReader(new FileReader(path));
  String line = "";

  List<String> contentString= new ArrayList<>();
  while ((line = contentbr.readLine()) != null) {
   contentString.add(line);

  }

  return contentString;

 

读取文件内容返回List<String>类型

标签:读取文件   ntb   slist   res   highlight   div   src   null   简单   

原文地址:http://www.cnblogs.com/ilazysoft/p/6266956.html

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