写µ使用 C# 转换为 CSV 文件

发布于 2024-12-03 04:05:35 字数 415 浏览 3 评论 0原文

我正在使用以下代码写入 CSV 文件

HttpContext context = HttpContext.Current;
context.Response.Clear();                     
context.Response.Write("µm");                   
context.Response.ContentType = "text/csv";
context.Response.AppendHeader("Content-Disposition", "attachment; filename=micron.csv");
context.Response.End();

,但在 UI 中它显示为 µm 而不是 µm。拜托,我需要一点帮助。

I am writing into CSV file using the following code

HttpContext context = HttpContext.Current;
context.Response.Clear();                     
context.Response.Write("µm");                   
context.Response.ContentType = "text/csv";
context.Response.AppendHeader("Content-Disposition", "attachment; filename=micron.csv");
context.Response.End();

but in the UI it is getting displayed as µm instead of µm. Please I need a little help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

标点 2024-12-10 04:05:35

查看 HttpResponse 下的 ContentEncoding
http://msdn.microsoft.com/en-us/library /system.web.httpresponse.aspx
无论您在哪个 UI 中显示文件,都可能使用与其中设置的不同的 UI。

Have a look at ContentEncoding under HttpResponse
http://msdn.microsoft.com/en-us/library/system.web.httpresponse.aspx
Whatever UI you're displaying the file in is probably using a different one to what's set there.

伴我心暖 2024-12-10 04:05:35

我不认为您可以简单地检查文件来查看它是否包含字符“”。

如果确实如此,只需更换它即可。

if (string.Contains("Â"))
        {
            string= string.Replace("Â", "");
        }

字符串只是文件的内容。

这只是一个猜测,我不知道这是否可行。

I don't suppose you could simply check the file to see if it contains the character "Â".

Then if it does just replace it.

if (string.Contains("Â"))
        {
            string= string.Replace("Â", "");
        }

With string just being the contents of the file.

This is just a guess, I do not know if this would work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文