gpt4 book ai didi

asp.net - 为什么我的 StreamWriter Response 输出在 Excel 中产生垃圾重音,但在记事本中看起来很好?

转载 作者:行者123 更新时间:2023-12-02 10:06:58 25 4
gpt4 key购买 nike

我正在使用 another Stack Overflow question 中的技术将 CSV 文件写入Response 输出以供用户打开/保存。该文件在记事本中看起来不错,但当我在 Excel 中打开它时,重音字符是垃圾。我认为这与字符编码有关,因此我尝试手动将其设置为 UTF-8(StreamWriter 的默认值)。这是代码:

// This fills a list to enumerate - each record is one CSV line
List<FullRegistrationInfo> fullUsers = GetFullUserRegistrations();

context.Response.Clear();
context.Response.AddHeader("content-disposition",
"attachment; filename=registros.csv");
context.Response.ContentType = "text/csv";
context.Response.Charset = "utf-8";

using (StreamWriter writer = new StreamWriter(context.Response.OutputStream))
{
for (int i = 0; i < fullUsers.Count(); i++)
{
// Get the record to process
FullRegistrationInfo record = fullUsers[i];

// If it's the first record then write header
if (i == 0)
writer.WriteLine(Encoding.UTF8.GetString(
Encoding.UTF8.GetPreamble()) +
"User, First Name, Surname");

writer.WriteLine(record.User + "," +
record.FirstName + "," +
record.Surname);
}
}

context.Response.End();

关于我还需要做什么才能正确编码文件以便 Excel 可以查看重音字符,您还有什么想法吗?

最佳答案

您可能需要编写一个名为 Byte-order Mark 的 UTF-8 指示符添加到输出的开头以通知 Excel 有关 UTF-8 的信息。愚蠢的Excel。

关于asp.net - 为什么我的 StreamWriter Response 输出在 Excel 中产生垃圾重音,但在记事本中看起来很好?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1497039/

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