如何使用 ANSI 格式将数据写入文本文件
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 System.IO.StreamWriter。
它有一个接受编码的构造函数:
Use System.IO.StreamWriter.
It has an constructor that accepts the encoding:
我不做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.