如何在Java中将文件导入多个ArrayList?

时间:2014-09-12 05:23:23

标签: java arraylist

Java初学者,请耐心等待。所以我需要导入一个看起来像这样的txt文件

A

德国

印度

越南

中国

并且程序将需要比较用户键入的国家/地区,然后确定它是属于A组还是B组并返回该组。我被告知要使用ArrayList。目前我的代码看起来像

public class regionCountry
{
   public String region;
   public ArrayList <String> countryList;
} 

public class destination
{
   public static void main (String [] args)
   {
      ArrayList<regionCountry> rc = new ArrayList<regionCountry>;
   }
}

但我仍然不知道该怎么做。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

您可以按照以下步骤操作。

1. Read your file (You can use Scanner)
2. Split data and store them in a `ArrayList`. 

现在让我们尝试解决这些问题。

如何阅读文件?

 File file=new File("yourFilePath");
 Scanner scanner=new Scanner(file);
 while (scanner.hasNextLine()){
      // now you can get content of file from here.
 }

然后拆分内容并创建对象集区域的实例并添加国家/地区列表。

注意:

使用正确的命名转换。将regionCountry更改为RegionCountry。班级名称应以大写字母开头。

将所有变量设为私有,并添加公共getter和setter。

编辑:发表评论。如何确定小组和国家?

 File file=new File("/home/ruchira/Test.txt");
 Scanner scanner=new Scanner(file);
 RegionCountry regionCountry = null;
 List<RegionCountry> regionCountryList=new ArrayList<>();
 List<String> groupList=new ArrayList<>();
 groupList.add("A");
 groupList.add("B");
 List<String> countryList = null;
  while (scanner.hasNextLine()){
    String line=scanner.nextLine();
    if(!"".equals(line)){
        if(groupList.contains(line.trim())){
         if(regionCountry!=null&&groupList.contains(regionCountry.getRegion())){
             regionCountryList.add(regionCountry);
           }
          regionCountry=new RegionCountry();
          regionCountry.setRegion(line);
          countryList=new ArrayList<>();
          }else {
          countryList.add(line);    // those will never be null in this logic
          regionCountry.setCountryList(countryList);
         }
       }
   }
  regionCountryList.add(regionCountry);// last group you have to take from here.
  System.out.println(regionCountryList);

Out put :(我在toString())中覆盖RegionCountry

  

[RegionCountry {region ='A',countryList = [德国,印度]},   RegionCountry {region ='B',countryList = [Vietnam,China]}]