3

我有 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编码的文本文件?

4

1 回答 1

3

通常所说的 ANSI 在技术上讲英语的环境中是“Windows-1252”。您可以尝试使用它来代替“us-ascii”。

于 2013-08-05T05:30:35.007 回答