string.Split()对于读取的CSV文件不起作用

时间:2019-06-04 21:15:44

标签: c# asp.net-mvc

我正在使用控制器读取Excel文件。我将CSV文件的所有行存储在数组中。当我打印出来时,我可以看到数组的内容。但是,当我遍历每一行并用逗号分隔时,我什么也没得到,因此我无法存储读取值。

以下是我的输出示例以及代码:

enter image description here

VAWC Neptune平面文件是我的文件。 206是文件中的行数。然后我在打印线及其长度。当此行用逗号分隔时,我只能看到第一个输出,否则所有内容都是空的。

但是,当我们继续阅读其他行时,此拆分数组不会出现。

这是我正在使用的代码部分:

//files is only having a single file named VAWC Neptune flat file - new meters for inventory.csv
public ActionResult ReadFile(IEnumerable<HttpPostedFileBase> files)
{
        var fileName = Path.GetFileName(files.First().FileName);
        var destinationPath = Path.Combine(Server.MapPath("~/App_Data"), fileName);
        files.First().SaveAs(destinationPath);
try
{
     string[] read = System.IO.File.ReadAllLines(destinationPath);
     System.Diagnostics.Debug.WriteLine(read.Length);
     for (int i = 0; i < read.Length; i++)
     {
        System.Diagnostics.Debug.WriteLine(read[i]);
        List<string> s = read[i].Replace(Environment.NewLine,"").Split(new char[] { ',' }, StringSplitOptions.None).ToList<string>();
        System.Diagnostics.Debug.WriteLine("Length of words in line:" + s.Capacity);
        for (int j = 0; j < s.Capacity; j++)
        {
            System.Diagnostics.Debug.WriteLine("Data:s[" + j + "]" + s[j]);
        }
     }
}

我尝试了很多可能的方法,但是没有任何效果。

1 个答案:

答案 0 :(得分:0)

从Excel到CSV,正确。这就是我要做的。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Excel = Microsoft.Office.Interop.Excel;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {

            Excel.Application xlApp = new Excel.Application();
            Excel.Workbook xlWorkBook = xlApp.Workbooks.Open(@"C:\Users\Ryan\Desktop\Coding\DOT.NET\Samples C#\Excel Workbook - Save Each Sheet as a CSV File\Book1.xlsx");
            xlApp.Visible = true;
            foreach (Excel.Worksheet sht in xlWorkBook.Worksheets)
            {
                sht.Select();
                xlWorkBook.SaveAs(string.Format("{0}{1}.csv", @"C:\Users\Ryan\Desktop\Coding\DOT.NET\Samples C#\Excel Workbook - Save Each Sheet as a CSV File to CSV\", sht.Name), Excel.XlFileFormat.xlCSV, Excel.XlSaveAsAccessMode.xlNoChange);

            }
            xlWorkBook.Close(false);

        }

    }
}