如何从Excel获取系列数据

时间:2016-07-12 11:55:44

标签: c# excel

我有以下要求。导入excel(它包含图表)时我需要从excel获取图表系列数据。我怎样才能得到?使用c#

这是我的excel文件...我需要获取蜡烛系列数据..你能帮忙吗

This is my excel file

1 个答案:

答案 0 :(得分:-1)

如果你可以从xls导出.csv,你可以:

        string[] lines = System.IO.File.ReadAllLines(@"yourFolder\yourCsv.csv");

        // Display the file contents by using a foreach loop.
        string[] arr;
        foreach (string line in lines)
        {
             //you get an array with each cell value
             arr=line.split(";")
             //do what you want with arr[1] which i suppose is the col you are interested to
        }

或者如果您想使用.xls文件格式,可以使用LinqToExcel 正如Optimal way to Read an Excel file (.xls/.xlsx)

所建议的那样