这是xml:
<?xml version="1.0" encoding="UTF-8"?>
<title>中文字Chinese charactors 1234</title>
这是 xslt:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions">
<xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
<xsl:value-of select="title"/>
</xsl:template>
</xsl:stylesheet>
但输出似乎编码错误如下:
銝剜��hinese charactors 1234
我确保编码使用的是“Unicode UTF-8”我使用的软件是Altova XMLSpy 为什么会发生这种情况以及如何解决,非常感谢您的帮助。:)