我有以下代码片段,它读取带有数据的csv文件并将它们存储在数组中。
private static void ProcessFile()
{
var lines = File.ReadLines("Data.csv");
var numbers = ProcessRawNumbers(lines);
****Some variables I use later on****
var rowTotal = new List<double>();
var squareRowTotal = new List<double>();
}
我想通过使用C#在DataGridView中插入数据而不是通过csv文件读取来做同样的事情。
我的csv文件格式为:
2,5,6,8,4
5,8,3,5,7
7,7,9,3,5
7,8,4,5,6
我想在DataGridView的行和列中输入上述数据,并处理行和数字。 我不知道怎么做,你能帮帮我吗?
答案 0 :(得分:1)
您可以使用double for循环进行处理:
for (int rows = 0; rows < dataGrid.Rows.Count; rows++)
{
for (int cols= 0; cols < dataGrid.Rows[rows].Cells.Count; cols++)
{
var value = dataGrid.Rows[rows].Cells[cols].Value.ToString();
}
}
答案 1 :(得分:0)
据我了解你的问题,请详细解释。 我建议用以下方式,
逻辑: 声明一个字符串数组并读取每一行并将数据填充到字符串数组中。 然后,将其转换为数据表并将其绑定到DataGridView。 您可以在Grid事件中执行rowTotal和SquareTotal。
private static void ProcessFile()
{
string lines;
string[] ContentData;
bool blnReadFile = true;
while (blnReadFile)
{
lines = File.ReadLines("Data.csv");
if (String.IsNullOrEmpty(content))
{
blnReadFile = false;
}
else
{
ContentData = ProcessRawNumbers(lines); /* Ihave retained your metod to get each line */
}
}
DataTable dt = ArrayToDataTable(ContentData);
dg.DataSource = dt; /* dg refers to Datagrid */
dg.DataBind();
}
public DataTable ArrayToDataTable(string[] arr)
{
DataTable dt = new DataTable();
string[] header = arr[0].Split(',');
foreach (string head in header)
{
dt.Columns.Add(head);
}
for (int theRow = 0; theRow < arr.Length; theRow++)
{
if (theRow != 0)
{
string str = arr[theRow];
string[] item = str.Split(',');
DataRow dr = dt.NewRow();
for (int theColumn = 0; theColumn < item.Length; theColumn++)
{
dr[theColumn] = item[theColumn];
}
dt.Rows.Add(dr);
}
}
return dt;
}