Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有来自两个不同文件的这些数据,如下所示:
文件 1:
文件 2:
从上面的日期可以看出,它们相互引用(1001、1002、...、1005) 我的问题是将它们组合成一个数组并通过那里的引用检索它们的正确方法是什么。
您可以使用地图
Map<Integer,String>;
然后您可以将第一个文件以及所有这些 id 存储在ArrayList中。
在第二个文件中,您可以简单地查找值并将它们都写入 Map
您可能想使用 Map 而不是数组。
遍历每一行,并使用第一个作为 Key 向 Map 添加一个条目(如果该条目已经存在,只需添加到内容中)。