读CSV文件
Posted qiu18359243869
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读CSV文件相关的知识,希望对你有一定的参考价值。
/// <summary>
/// 读取csv文件
/// </summary>
/// <param name="csvPath">string 标识的 csv文件路径</param>
/// <returns>返回的读取的 csv 文件的行集合</returns>
public static string[] ReadCsv(string csvPath)
{
string[] csvLineList = File.ReadAllLines(csvPath, Encoding.Default);
return csvLineList;
}
以上是关于读CSV文件的主要内容,如果未能解决你的问题,请参考以下文章
Pandas 基础 - 读/写 Excel 和 CSV 文件
Python 2.7 CSV 文件读/写 \xef\xbb\xbf 代码