使用c#访问xml中多个对象时的空引用
本文关键字:对象 引用 访问 xml 使用 | 更新日期: 2023-09-27 18:19:31
我正试图从xml中制作一个加载器来创建菜单。我的按钮一直有问题。它总是给出一个空指针的错误。这是代码:title.xml
<?xml version="1.0" encoding="utf-8" ?>
<title>
<background>Assets/background</background>
<song>Assets/title</song>
<button>
<texture>Assets/background</texture>
<position>10,10</position>
<buttonaction>exit</buttonaction>
</button>
</title>
xmlManager
static public class xmlManager
{
static public titleData makeTitle(ContentManager content)
{
titleData title = new titleData();
System.IO.Stream stream = TitleContainer.OpenStream("Content/title.xml");
XDocument doc = XDocument.Load(stream);
var titleXML = doc.Descendants("title").First();
title.background = titleXML.Element("background").Value;
title.song = titleXML.Element("song").Value;
title.button = new List<Button>();
title.button = (from button in doc.Element("title").Elements("button")
select new Button()
{
texture = button.Element("texture").Value,
position = StringToVector(button.Element("Position").Value),
buttonAction = button.Element("buttonAction").Value
}).ToList();
return title;
}
static private Vector2 StringToVector(string str)
{
//convert a string to a point
Vector2 vector;
vector.X = Convert.ToInt32(str.Split(',')[0]);
vector.Y = Convert.ToInt32(str.Split(',')[1]);
return vector;
}
}
它总是停在select new button()
的xml管理器内部。
XML元素名称区分大小写。XML中有buttonaction
,但C#代码中有buttonAction
。
我还建议使用字符串强制转换而不是.Value
,因为如果找不到元素,.Value
将产生NullReferenceException,并且这些可能很难追踪:
select new Button()
{
texture = (string)button.Element("texture"),
position = StringToVector((string)button.Element("position")),
buttonAction = (string)button.Element("buttonaction")
}
您还需要修改StringToVector()
方法,以便能够处理null值。这将使您的代码对NullReferenceException更有弹性。