如何使用 ANSI 格式将数据写入文本文件

发布于 2024-07-10 07:22:28 字数 80 浏览 6 评论 0原文

使用 ASP.net,如何将 ANSI 字符写入文本文件?

我需要将此文件的文本写入网络浏览器。 他们支持 ANSI 吗?

Using ASP.net, how do you write ANSI characters to a text file?

I need to write this file's text to the web browser. Do they support ANSI?

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

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

发布评论

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

评论(2

や三分注定 2024-07-17 07:22:28

使用 System.IO.StreamWriter。
它有一个接受编码的构造函数:

FileStream fs = new FileStream(fileName,
            FileMode.CreateNew, FileAccess.Write, FileShare.None);
StreamWriter writer = 
            new StreamWriter(fs, System.Text.Encoding.ASCII);

Use System.IO.StreamWriter.
It has an constructor that accepts the encoding:

FileStream fs = new FileStream(fileName,
            FileMode.CreateNew, FileAccess.Write, FileShare.None);
StreamWriter writer = 
            new StreamWriter(fs, System.Text.Encoding.ASCII);
月光色 2024-07-17 07:22:28

我不做ASP,所以我不能告诉你具体怎么做。 但我相信大多数(所有?)浏览器确实支持 ANSI 纯文本。 您可以将 HTTP 内容类型返回为文本/纯文本,并将文本作为 HTTP 响应的内容发送。

I don't do ASP, so I can't tell you how to do it exactly. But I believe most (all?) browsers do support ANSI plain text. You might return HTTP Content Type as text/plain, and send the text as the contents of your HTTP response.

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