我正在尝试从我的Xml文件中读取一个Text节点列表。当我尝试读取列出的文本元素之一的子节点时,我得到了NullReference异常,即使XDocument节点看起来已经填满了。
NullReference异常抛出行foreach (XElement textElement in textElements)
,这意味着列表textElements具有Count> 1所以它不应该为空。这就是调试器愿意去的地方。
我是以错误的方式阅读Xml,还是我不允许/不应该按照我现在的方式构建XElement列表?
这是我的Xml文件
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE Book SYSTEM "Book.dtd"[]>
<album version="0.2" settingsVersion="1">
<size />
<cover />
<inner>
<page>
<pagenumber>1</pagenumber>
<image>1.jpg</image>
<text>
<value>Test </value>
<font>arial</font>
<size>18pt</size>
<style>normal</style>
<weight>normal</weight>
<color>#77DD44</color>
<rotation>0</rotation>
<alignment>start</alignment>
<position>
<x>50</x>
<y>50</y>
</position>
</text>
<text>
<value>Test 2 </value>
<font>arial</font>
<size>18pt</size>
<style>normal</style>
<weight>normal</weight>
<color>#77DD44</color>
<rotation>0</rotation>
<alignment>start</alignment>
<position>
<x>50</x>
<y>50</y>
</position>
</text>
</page>
</inner>
</album>
元素inner
可以包含多个page
元素,page
可以包含多个text
元素。
我用以下方法读取了Xml。
List<XElement> pageElements = doc.Root.Element("inner").Elements("page").ToList();
foreach (XElement pageElement in pageElements)
{
string pageNumberString = pageElement.Element("pagenumber").Value;
int pageNumberValue = Convert.ToInt32(pageNumberString);
string fileNameValue = pageElement.Element("image").Value;
// Verify if the currently looped page is the same as the one selected by the user.
if (pageNumberValue == pageNumber)
{
// Get all text nodes from the found page.
List<XElement> textElements = pageElement.Elements("text").ToList();
// If no text nodes found return the page with an empty TextInfo array.
if (textElements.Count == 0)
{
PageInfo pageInfoNoText = new PageInfo { PageNumber = pageNumberValue, FileName = fileNameValue, Text = new TextInfo[0] };
Logger.log("PageInfo found for collection {0}. Info {1}", collectionId, pageInfoNoText);
return pageInfoNoText;
}
// If text nodes are found build a list of TextInfo objects and build a new PageInfo object.
else
{
// All text elements in the XML under the found page.
List<TextInfo> textInfoList = new List<TextInfo>();
TextInfo[] textArray = new TextInfo[0];
#region Load all required text data from the XML file and build the textList.
foreach (XElement textElement in textElements)
{
string textValue = textElement.Element("value").Value;
string fontValue = textElement.Element("font").Value;
string fontSizeValue = textElement.Element("size").Value;
string styleValue = textElement.Element("style").Value;
string weightValue = textElement.Element("weight").Value;
string colorValue = textElement.Element("color").Value;
string rotationString = textElement.Element("rotation").Value;
int rotationValue = Convert.ToInt32(rotationString);
string alignmentValue = textElement.Element("alignment").Value;
string positionXString = textElement.Element("x").Value;
int positionXValue = Convert.ToInt32(positionXString);
string positionYString = textElement.Element("y").Value;
int positionYValue = Convert.ToInt32(positionYString);
// Build Info objects.
PositionInfo tempPositionInfo = new PositionInfo
{
X = positionXValue,
Y = positionYValue
};
TextInfo tempTextInfo = new TextInfo
{
Value = textValue,
Font = fontValue,
Size = fontSizeValue,
Style = styleValue,
Weight = weightValue,
Color = colorValue,
Rotation = rotationValue,
Alignment = alignmentValue,
Position = tempPositionInfo
};
textInfoList.Add(tempTextInfo);
}
textArray = textInfoList.ToArray();
#endregion
PageInfo pageInfo = new PageInfo
{
PageNumber = pageNumberValue,
FileName = fileNameValue,
Text = textArray
};
Logger.log("PageInfo found for collection {0}. Info: {1}", collectionId, pageInfo);
return pageInfo;
}
}
}
感谢任何帮助/见解!
答案 0 :(得分:1)
您的text元素不包含名为x的元素,因此尝试访问x的值会导致NullReferenceException:
string positionXString = textElement.Element("x").Value;
// textElement.Element("x") is null, "x" is in textElement.Element("position")
int positionXValue = Convert.ToInt32(positionXString);
你最好使用Descendants(Descendants(&#34; x&#34;)。FirstOrDefault()?. Value)而不是Element,但总的来说你可能想要完全重组它。
答案 1 :(得分:1)
你的代码很好但是当你得到x和y值时会出错,你需要得到position
元素的x和y值,如下所示
string positionXString = (string)textElement.Element("position").Element("x").Value;
int positionXValue = Convert.ToInt32(positionXString);
string positionYString = (string)textElement.Element("position").Element("y").Value;
int positionYValue = Convert.ToInt32(positionYString);