Net Core 错误检查文件解析器是否缺少文本

Net Core Error Check File Parser for Missing Text

我用这个方法写了一个文件解析器。

示例文本:

1,Joe,CA,58,2
2,Matt,TX,63,5

-

using System;
using System.Collections.Generic;
using System.IO;
using System.Text;

namespace ParseTest
{
    public class Customer
    {

        public class CustomerData
        {
            // These are the column names in PlatypusN.csv:
            public int CustomerId { get; set; }
            public string CustomerName { get; set; }
            public string CustomerState { get; set; }
            public int ProductId { get; set; }
            public int QuantityBought { get; set; }
        }

        public List<CustomerData> GetCustomer(string filename)
        {
            List<CustomerData> customerdata = new List<CustomerData>();
            string CustomerBase = filename;
            String fileToLoad = String.Format(CustomerBase);

            using (StreamReader r = new StreamReader(fileToLoad))
            {
                string line;
                while ((line = r.ReadLine()) != null)
                {
                    string[] parts = line.Split(',');
                    // Skip the column names row
                    if (parts[0] == "id") continue;
                    CustomerData dbp = new CustomerData();
                    dbp.CustomerId = Convert.ToInt32(parts[0]);
                    dbp.CustomerName = parts[1];
                    dbp.CustomerState = parts[2];
                    dbp.ProductId = Convert.ToInt32(parts[3]);
                    dbp.QuantityBought = Convert.ToInt32(parts[4]);
                    customerdata.Add(dbp);
                }
            }
            return customerdata;
        }
    }
}

主要测试方法:

    static void Main()
    {
        Customer customer = new Customer();
        string filename = @"C:\Users\Desktop\Parsefile\sample.txt";

        var test = customer.GetCustomer(filename);
        Console.ReadKey();
    }

如果示例文件一行中包含的数据较少,现在会发生什么情况

示例文本:

1,Joe,CA,58   // missing one number
2,Matt,TX,63,5

错误如下: System.IndexOutOfRangeException: 'Index was outside the bounds of the array.'

dbp.QuantityBought = Convert.ToInt32(parts[4]);

解决这个问题的最简洁方法是什么,我不想使用这样低效的代码?

if (parts.Length - 1 >= 1)
dbp.CustomerName = parts[1];
.....
if (parts.Length - 1 >= 4)
dbp.QuantityBought = Convert.ToInt32(parts[4]);

只捕获异常忽略该行并继续解析:

while ((line = r.ReadLine()) != null)
{
    try
    {
        string[] parts = line.Split(',');
        // Skip the column names row
        if (parts[0] == "id") continue;

        CustomerModel dbp = new CustomerModel
        {
            CustomerId = Convert.ToInt32(parts[0]),
            CustomerName = parts[1],
            CustomerState = parts[2],
            ProductId = Convert.ToInt32(parts[3]),
            QuantityBought = Convert.ToInt32(parts[4])
        };

        allFileCustomerData.Add(dbp);
    }
    catch (FormatException ex)
    {

    }
    catch (Exception ex)
    {
        throw;
    }
}