??Figure 9 String Array in Internet Explorer
??Reader类有专门的说明Base64和BinHex编码流的方法。下面的代码片段演示了怎么样用XmlTextReader类的ReadBase64方法解析用Base64和BinHex编码集创立的文档。
XmlTextReader reader = new XmlTextReader(filename);
while(reader.Read()) {
if (reader.LocalName == 'element') {
byte[] bytes = new byte[1000];
int n = reader.ReadBase64(bytes, 0, 1000);
string buf = Encoding.Unicode.GetString(bytes);
Console.WriteLine(buf.Substring(0,n));
}
}
reader.Close();
??从byte型转换成string型是通过Encoding类的GetString方法实现的。尽管我只先容了基于Base64编码集的代码,但是可以简略的用BinHex调换方法名就可以实现读基于BinHex编码的节点内容(用ReadBinHex方法)。这个技巧也可以用于读任何用byte数据情势表现的二进制数据,尤其是image类型的数据。
以上就是在.NET Framework中轻松处理XML数据(4-4) 的内容,更多相关内容请关注PHP中文网(www.php.cn)!