如何提取数组中用户指定索引处的所有信息,存储以备后用

How to extract all information at a user specified index in an array, store for later

我在需要包含来自 aCSV 文件的信息的数组时遇到问题,用户需要 select 车号,该车号用于从指定索引中提取汽车信息以进行打印。 任何指导我的帮助将不胜感激。

`while (input.hasNextLine()) {
                line = input.nextLine();
                carsAvailable++;
                int length = line.length();
                String fields[] = line.split(",");
                String CarNo = fields[0];
                String CarName = fields[1];
                String Seats = fields[2];
                String Transmission = fields[3];
                String CarType = fields[4];
                String RateDay = fields[5];
                ("enter a car no");`

*CarNo to determine index number*

quote any direction would be great

创建一辆包含所有这些字段的汽车class。然后您可以将 carNumber 保存为 Map 中的键,将 car 对象保存为值。 这样你的搜索会更容易、更快捷。

不知为何无法添加代码所以添加图片以供参考。