我想从C#中的 Sheet 2 开始,将数据从datatable写入CSV文件。 请帮忙。 我有以下功能来创建CSV文件。
public void CreateCSVFile(DataTable dt, string strFilePath)
{
// Create the CSV file to which grid data will be exported.
StreamWriter sw = new StreamWriter(strFilePath, false);
// First we will write the headers.
//DataTable dt = m_dsProducts.Tables[0];
int iColCount = dt.Columns.Count;
for (int i = 0; i < iColCount; i++)
{
sw.Write(dt.Columns[i]);
if (i < iColCount - 1)
{
sw.Write(",");
}
}
sw.Write(sw.NewLine);
// Now write all the rows.
foreach (DataRow dr in dt.Rows)
{
for (int i = 0; i < iColCount; i++)
{
if (!Convert.IsDBNull(dr[i]))
{
sw.Write(dr[i].ToString());
}
if (i < iColCount - 1)
{
sw.Write(",");
}
}
sw.Write(sw.NewLine);
}
sw.Close();
}
答案 0 :(得分:0)
强烈建议:不要试图发明自己的CSV编写器/阅读器。这似乎很容易,但水中有龙,很多龙。特别是逃避字符串很有趣 - 你如何管理一些行
逃避这种薄弱需要做很多工作。
所以请继续使用像http://kbcsv.codeplex.com/这样的库。它是免费的,快速的,可以节省你的工作时间。
作为进一步的问题:表2是excel文件吗?