xsltを使用してxmlログファイルをhtmlとして表示するビューアーに取り組んでいます。私のローカリゼーションを除いて、すべてがうまくいっています。生成された HTML ファイルには、一部の 2 バイト文字があるべき場所に 'ó' があります。何が間違っているのかわかりません。
以下は、簡略化された XSLT ファイルです。
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
<xsl:output method="html" version="4.0" encoding="utf-8" indent="yes"/>
<xsl:variable name="language" select="nbklog/@language" />
<xsl:variable name="dictionaryName">
dictionary_<xsl:value-of select="$language"/>.xml
</xsl:variable>
<xsl:variable name="dictionary" select="document($dictionaryName)" />
<xsl:template match="/nbklog">
<html>
<body>
<h2>
<xsl:value-of select="$dictionary//String[@Key=$jobType]" />
</h2>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
ローカライズに使用される辞書 xml ファイルを次に示します。
<?xml version="1.0" encoding="utf-8"?>
<Dictionary xml:lang="es-ES">
<String Key="Application">
Applicación
</String>
</Dictionary>
変換する xml ファイルの例を次に示します。
<?xml version="1.0" encoding="utf-8"?>
<nbklog id="51b654d4" jobType="backup" language="es-ES" version="1.0">
<deviceName>c:\</deviceName>
....
</nbklog>
次のC#コードの変換を実行しています:
string theOutputHtml;
using (MemoryStream ms = new MemoryStream()) {
using (XmlTextWriter writer = new XmlTextWriter(ms, Encoding.UTF8)) {
XPathDocument theDocument = new XPathDocument(inXmlFilename);
// Load the style sheet and run the transformation.
XslCompiledTransform theXslTrasform = new XslCompiledTransform();
theXslTrasform.Load(inXsltFilename, XsltSettings.TrustedXslt, null);
theXslTrasform.Transform(theDocument, writer);
ms.Position = 0;
using (StreamReader theReader = new StreamReader(ms)) {
theOutputHtml = theReader.ReadToEnd();
}
}
}
OutputHtml のコンテンツには、「ó」ではなく「ó」が含まれます。
編集:
これを HTML 文字列の と タグの間に追加すると、問題が解決しました。
<meta http-equiv='Content-Type' content='text/html;charset=UTF-8'>