Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 XML 文件,需要将其转换为编码为 ANSI 的文本文件。
我尝试了以下方法,但我只得到 UTF-8 编码:
<xsl:output method="text"/> <xsl:output method="text" encoding="us-ascii"/> <xsl:output method="text" encoding="us-ascii" method="text/plain"/>
反正有没有获得ANSI编码的文本文件?
通常所说的 ANSI 在技术上讲英语的环境中是“Windows-1252”。您可以尝试使用它来代替“us-ascii”。