使用 XDocument.Parse 加载 xml 时如何保留 ASCII 编码?

发布于 2024-10-04 06:50:35 字数 347 浏览 2 评论 0原文

当我使用 XDocument.Parse 加载编码为“us-ascii”的 xml 文档时,生成的文档已将 ascii 转换为 utf-8。

例如,在我的 xml 文件中(不是完整文件)

<data>&#233; some other stuff</data>

加载此文件时,它会转换为

<data>é some other stuff</data>

How can I Prevent this?我需要能够稍后选择后代并将它们重新写入另一个文件,但这样做时,它会被转换。

When I load an xml document with encoding="us-ascii" using XDocument.Parse, the resultant document has converted the ascii into utf-8.

For example, in my xml file i have (not full file)

<data>é some other stuff</data>

When this is loaded, it converts to

<data>é some other stuff</data>

How can I prevent this? I need to be able to later select descendant and re-write them to another file, but when doing so, it's converted.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文