如何实现Map <string,list <string>&gt; map = new HashMap&lt;&gt;();

时间:2018-01-10 11:05:11

标签: java algorithm collections

我在.txt文件中有这样的数据

ClassName | StudentName
----------|----------------
A         | Vinod
B         | Aditya
A         | Deepak
C         | Pavan
B         | Anand
A         | Arihant
C         | Dharmendra
A         | Poem    
C         | ganesh
B         | Paritosh
B         | Paritosh

我需要得到像这样的结果 classname a和A班的学生列表 classname b和B班学生名单 类似

1 个答案:

答案 0 :(得分:1)

您可以逐行阅读文件并将其存储在Logger中。现在假设所有行a都采用该格式:

  

class studentName

您可以使用List<String>来完成任务。

Collector