我正在尋找一種在CSV文件的不同單元格中編寫字符串的方法。使用C#編寫CSV文件
我使用這個程序,
private void button1_Click(object sender, EventArgs e)
{
string filePath = @"E:\test.csv";
string a = "a";
string b = "c";
string c = "d";
string d = "d";
File.WriteAllText(filePath, a);
// how can add the other strings in the next cells ?
}
我需要在這裏是寫在第二單元「一」中的第一個單元格,「B」,C ..
CSV的問題在於沒有固定的格式(依賴於文化),有些應用程序使用它們自己的實現。然而,每個實施都相對簡單。有關更多信息,請參閱http://en.wikipedia.org/wiki/Comma-separated_values。 – 2011-05-05 18:27:39
是否可以使用Excel文件? – 2011-05-05 18:31:42
我用.xls嘗試過,但結果相同嗎? – 2011-05-05 18:33:32