如何在C#中创建CSV文件

时间:2016-09-28 13:35:02

标签: c# file csv filesystems

我是文件系统的新手。我需要创建一个简单的csv文件,需要在文件中写入字符串并将其读回。

我在创建的文件中获得了一些unicode值。如何通过创建csv并从中读回来编写字符串值。

到目前为止,我写过这篇文章。这里需要一点点。

以下是我的代码。

        static void Main()
    {
        string folderName = @"D:\Data";
        string pathString = System.IO.Path.Combine(folderName, "SubFolder");
        System.IO.Directory.CreateDirectory(pathString);
        string fileName = System.IO.Path.GetRandomFileName();
        pathString = System.IO.Path.Combine(pathString, fileName);
        Console.WriteLine("Path to my file: {0}\n", pathString);

        if (!System.IO.File.Exists(pathString))
        {
            using (System.IO.FileStream fs = System.IO.File.Create(pathString))
            {
                {
                    byte a = 1;
                    fs.WriteByte(a);
                }
            }
        }

        // Read and display the data from your file.
        try
        {
            byte[] readBuffer = System.IO.File.ReadAllBytes(pathString);
            foreach (byte b in readBuffer)
            {
                Console.Write(b + " ");
            }
            Console.WriteLine();
        }
        catch (System.IO.IOException e)
        {
            Console.WriteLine(e.Message);
        }
    }

2 个答案:

答案 0 :(得分:2)

您可以使用streamwriter编写csv文件。您的文件将位于bin / Debug中(如果正在运行调试模式而不是另外说明)。

 var filepath = "your_path.csv";
 using (StreamWriter writer = new StreamWriter(new FileStream(filepath,
 FileMode.Create, FileAccess.Write)))
 {
     writer.WriteLine("sep=,");
     writer.WriteLine("Hello, Goodbye");
 }

答案 1 :(得分:1)

您可以使用适当的扩展名创建特定的文件类型,在本例中为“.csv”。 下面是使用文件路径和随机字符串的快速示例。

using System;
using System.IO;

namespace CSVExample
{
    class Program
    {
        static void Main(string[] args)
        {
            string data = "Col1, Col2, Col2";
            string filePath = @"File.csv";
            File.WriteAllText(filePath, data);
            string dataFromRead = File.ReadAllText(filePath);
            Console.WriteLine(dataFromRead);
        }
    }
}

enter image description here