tft每日頭條

 > 科技

 > 讀取csv文件中的數據并進行分析

讀取csv文件中的數據并進行分析

科技 更新时间:2024-12-12 04:34:19

讀取csv文件中的數據并進行分析? public static List<string[]> ConvertCsvToList(string fileName) { List<string[]> list = new List<string[]>(); using (StreamReader sr = new StreamReader(fileName, Encoding.UTF8)) { string[] headers = sr.ReadLine().Split(',');//處理頭部标題 foreach (string header in headers) { // list.Add(headers); } while (!sr.EndOfStream) { string[] rows = sr.ReadLine().Split(','); list.Add(rows); } } return list; } ,下面我們就來聊聊關于讀取csv文件中的數據并進行分析?接下來我們就一起去了解一下吧!

讀取csv文件中的數據并進行分析(C操作)1

讀取csv文件中的數據并進行分析

C# 最簡單的讀取CSV文件代碼

public static List<string[]> ConvertCsvToList(string fileName) { List<string[]> list = new List<string[]>(); using (StreamReader sr = new StreamReader(fileName, Encoding.UTF8)) { string[] headers = sr.ReadLine().Split(',');//處理頭部标題 foreach (string header in headers) { // list.Add(headers); } while (!sr.EndOfStream) { string[] rows = sr.ReadLine().Split(','); list.Add(rows); } } return list; }

如果覺得對你有用,請收藏并轉發

,

更多精彩资讯请关注tft每日頭條,我们将持续为您更新最新资讯!

查看全部

相关科技资讯推荐

热门科技资讯推荐

网友关注

Copyright 2023-2024 - www.tftnews.com All Rights Reserved