gpt4 book ai didi

c# - 如何在 C# 中创建 CSV 文件

转载 作者:行者123 更新时间:2023-12-05 09:19:48 26 4
gpt4 key购买 nike

<分区>

我是文件系统的新手。我需要创建一个简单的 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);
}
}

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com