我在 C# 中实现了 Nagasena 编码器:
public byte[] encodeEXI(byte[] inBytes)
{
MemoryStream outStream = new MemoryStream();
MemoryStream inStream = new MemoryStream(inBytes);
try
{
Transmogrifier transmogrifier = new Transmogrifier();
GrammarCache grammarCache = new GrammarCache((EXISchema)null, GrammarOptions.DEFAULT_OPTIONS);
transmogrifier.setGrammarCache(grammarCache, (SchemaId)null);
transmogrifier.OutputStream = outStream;
transmogrifier.AlignmentType = AlignmentType.compress;
transmogrifier.PreserveWhitespaces = false;
transmogrifier.PreserveLexicalValues = false;
transmogrifier.DeflateLevel = 1;
transmogrifier.ResolveExternalGeneralEntities = false;
Org.System.Xml.Sax.InputSource<Stream> iS = new Org.System.Xml.Sax.InputSource<Stream>(inStream);
transmogrifier.encode(iS);
outStream.Position = 0;
last = outStream.ToArray();
return outStream.ToArray();
}
catch (TransmogrifierException tex)
{
Console.WriteLine("Error in OpenExi_Library: " + tex);
return null;
}
finally
{
outStream.Close();
inStream.Close();
}
}
我在编码简单有效的 xml 女巫时遇到问题,包含 <> 或<>
:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<BPN>
<Booo id="6001<" />
<PoooPoo id="2600" />
<UserName>tomas</UserName>
<VooId>MYID</VooId>
<Text><</Text>
</BPN>
它只是以 TransmogrifierException: Nagasena.Sax.TransmogrifierException: End of document is not expected 结束。
我正在使用 c# 实现,所以我在 java 实现中测试了问题 - 它运行良好。所以我试图改变一些选项,但没有任何帮助。
当我<Text><</Text>
用<Text><![CDATA[<]]></Text>
和从<Booo id="6001<" />
我删除<
-替换时<Booo id="6001" />
,编码成功。但是在属性中没有使用 cdata 的可能性,并且当它包含 <> 或者<>
它以错误结束时。
我将调试 nagasena 库,但如果有人有一些有用的建议,我将不胜感激。
谢谢