我有一个应用程序将xml文件与文本文件进行比较,如果xml的特定行的内容与文本文件相同,则程序输出1,但如果它们不同,则输出a 0. Unfortunatley我无法将其输出1.它似乎总是输出0。
代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml;
using System.Xml.Linq;
using System.IO;
namespace CompareIt
{
class Program
{
static void Main(string[] args)
{
using (XmlReader reader = XmlReader.Create("2.xml"))
{
while (reader.Read())
{
if (reader.NodeType == XmlNodeType.Element)
{
if (reader.Name.ToLower() == "data")
{
string xml = reader.ReadOuterXml();
var xmlString = (from data in XDocument.Parse(xml).Elements()
select data.Elements().First().Value).FirstOrDefault();
xmlString = xmlString.Replace("\n", "").Trim();
var fileString = File.ReadAllText(@"8.txt");
if (xmlString == fileString)
Console.WriteLine("1");
else
Console.WriteLine("0");
}
}
}
}
}
}
}
XML文件(程序应该只读取数据部分):
<?xml version="1.0"?>
<root>
<Data>
<Seperator>1</Seperator>
</Data>
<Signature xmlns="http://www.w3.org/2000/09/xmldsig#">
<SignedInfo>
<CanonicalizationMethod Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315"/>
<SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1"/>
<Reference URI="">
<Transforms>
<Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature"/>
</Transforms>
<DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
<DigestValue>GHOSJRUqcHnZ3M090/5/KhvghyQ=</DigestValue>
</Reference>
</SignedInfo>
<SignatureValue>oib+LAXqJshDFm3YM63qkSsJxxF+t0uahGax8tLrjSPJUjW045iYvB4LJCgMeF9oxatbWnVB9hGbvtVnl4iewJDL3kjnjvot5CLozMOaIGJgdys5MP8ncx771itANTm8wi8KgnqVjGjvTakEmcdwcSdRXuCP1WGOwuXm5StkY8Q=</SignatureValue>
</Signature>
</root>
,文本文件只包含:
1
当我Console.WriteLine(fileString);
时
或
Console.WriteLine(xmlString);
然而,他们确实输出了同样的东西,就像它们应该的那样,这让我更加困惑。
答案 0 :(得分:1)
我测试了你的代码,我看到它在
时输出1<Data>
<Seperator>1</Seperator>
</Data>
,
时输出0<Data>
<Seperator>0</Seperator>
</Data>
完全合法和正确的输出。
您是否尝试删除项目的BIN文件夹的内容?然后重建项目并确保将文本文件和xml文件属性设置为“Copy if Newer”或“Copy Always”,前提是这些文件是项目的一部分。
答案 1 :(得分:0)
很可能你的文本文件也包含换行符号,从而使字符串不同。
答案 2 :(得分:0)
如何确保File.ReadAllText确实只返回一个字符?首先输出它以用于调试目的,或者修剪它。
答案 3 :(得分:0)
我已经测试了你的代码并且它工作正常,唯一的原因可能是你的文本文件包含1之后的新行。你可以尝试在if语句之前删除新行。使用
fileString = fileString.Replace(Environment.NewLine,"");
if(....) //your if