Store text file content line by line into array

后端 未结 11 1350
梦毁少年i
梦毁少年i 2020-12-05 12:09

all,I\'m now facing the problem of no idea on storing the content in text file into the array. The situation is like, text file content:

abc1
xyz2
rxy3
         


        
11条回答
  •  醉梦人生
    2020-12-05 12:27

    JAVA 8 :

    Files.lines(new File("/home/abdennour/path/to/file.txt").toPath()).collect(Collectors.toList());
    

提交回复
热议问题