gpt4 book ai didi

c# - XML 导入到 C# 对象

转载 作者:太空宇宙 更新时间:2023-11-03 11:37:42 27 4
gpt4 key购买 nike

我有一个包含以下内容的 XML 文件:

<tooltip>
<text>My Tool Tip</text>
<color>#000000</color>
<crosshairs>
<width>3</width>
<color>green</color>
<padding>5px</padding>
</crosshairs>
<crosshairs>
<width>3</width>
<color>blue</color>
</crosshairs>
</tooltip>

我希望将“十字准线”元素加载到 C# 对象中 - 然后将该对象序列化为 JSON 文件:

ToolTipClass toolTip = new ToolTipClass(xmlDoc);
JavaScriptSerializer s = new JavaScriptSerializer();
string aJSON = s.Serialize(toolTip);
// aJSON is now written out to file.

我确实有一个“toolTip”类,其中包含一些在构造函数中默认设置的公共(public)变量。构造函数还读取 XML 文件并用 XML 中的值覆盖公共(public)变量(例如写入“公共(public)字符串文本;”,但工具提示的“十字准线”部分可以包含 1 个或多个元素 - 我不想为十字线定义一个类,因为十字线内的标签可以不仅仅是上面定义的 2 个(宽度、颜色)。例如(填充、边距、字体大小等)

JSon 输出看起来像这样:

tooltip: {
text: "My Tool Tip",
color: "#000000",
crosshairs: [{
width: 3,
color: 'green',
padding: '5px'
}, {
width: 3,
color: 'blue'
}]
}

我需要知道的是如何将十字准线元素加载到非预定义的对象中?

我看过:http://danielwylie.me/blog/2010/04/26/c-convert-xml-to-an-object-or-list-of-an-object/?Focus=Yes但这使用了一个“人”类,这不是我想要的。

非常感谢任何帮助/指点。


额外:工具提示类:

public class ToolTip
{
public string backgroundColor = "rgba(255, 255, 255, .80)";
public string borderColor = "#764D9B";
public int borderRadius = 5;
public int borderWidth = 1;
//public string crosshairs = null;
//public List<object> crosshairs = new List<object>();
public Boolean enabled = true;
//formatter: ;
public Boolean shadow = true;
public Boolean shared = false;
public float snap = 10;
public HCCSS style = new HCCSS();
public string text = "[undefined]";
public string color = "#000000";

public HCToolTip(XmlDocument xmlDoc) {
text = findTagInXML_String(xmlDoc, "//tooltip/text", text);
color = findTagInXML_String(xmlDoc, "//tooltip/color", color);
//snip
}

static private string findTagInXML_String(XmlDocument xmlDoc, string tag, string defaultvalue) {
return xmlDoc.SelectSingleNode(tag) == null || xmlDoc.SelectSingleNode(tag).InnerText == "null" ? defaultvalue : xmlDoc.SelectSingleNode(tag).InnerText;
}
}

更新/回复##(不确定如何在下面回复)。

感谢您提供代码和转换器站点的链接。我添加了一些代码并让它做了一些事情,但我确实还有一些问题。

  1. 如何将 XML 数据放入 Crosshairs 集合中。我目前在我的 toolTip 构造函数类中得到了这个:

    Crosshairs c = new Crosshairs();
    c.SetProperty("a",new {width="3", color="green"});
    c.SetProperty("b", new { width = "3", color = "blue" });
    crosshairs.Add(c);

我假设我得到新宽度颜色的地方就是我希望它从上面提到的 XML 文件中引入详细信息的地方。

  1. 我已经在 Converter 类中添加了,但我现在得到的输出是这样的:

    工具提示:{ 边框颜色:“#F00” 十字线:{ 列表: [ { 值(value): { 宽度:“3” 颜色:“绿色” } 文本: { 宽度:“3” 颜色:“蓝色” } } ] } 启用:真

我确实将示例转换器更改为具有以下行:

foreach (Crosshairs item in listType) {
//Add each entry to the dictionary.
Dictionary<string, object> listDict = new Dictionary<string, object>();
listDict.Add("Value", item.GetProperty("a"));
listDict.Add("Text", item.GetProperty("b"));
itemsList.Add(listDict);
}
result["List"] = itemsList;

如您所见,它看起来不太通用,因为它使用“CrossshairsCollection”类型,但我猜测我可以将“CrossshairsCollection”更改为“GenericCollection”,因为它只是一个字典 -所以上面的 #1 仍然适用。

  1. 另一个问题是,不仅工具提示有这个“十字准线”类,而且我还有其他类似于十字准线的类 - 例如我希望拥有相同系统的样式。

如果有人可以帮助解决上面的#1 - 将数据从 XML 导入到通用类而不是预定义类,那将真的很有帮助。

再次 - 非常感谢您的帮助。艾伦

最佳答案

定义一个简单的 Crosshairs 类型,它是字符串对象字典的包装器:

class CrosshairsCollection : List<Crosshairs>
{

}

class Crosshairs
{
private Dictionary<string, object> dict = new Dictionary<string,object>();

public IEnumerable<KeyValuePair<string, object>> GetAllProperties()
{
foreach (string key in dict.Keys)
{
yield return new KeyValuePair<string, object>(key, dict[key]);
}
}

public object GetProperty(string s)
{
object value;

bool exists = dict.TryGetValue(s, out value);
if (!exists)
{
value = null;
}

return value;
}

public void SetProperty(string s, object o)
{
if (!dict.ContainsKey(s))
{
dict.Add(s, o);
}
else
{
dict[s] = o;
}
}
}

然后为 CrosshairsCollection 实现一个 JavaScriptConverter,类似于:http://msdn.microsoft.com/en-us/library/system.web.script.serialization.javascriptconverter.aspx

用 CrosshairsCollection 替换你的 List 并用你的 JavaScriptSerializer 实例注册 JavaScriptConverter。

[编辑:后续问题的答案]

我假设您有两个后续问题,都编号为 1,第二个问题是“如何让 JSON 输出更像我的原始示例?” :)

我解释您的原始 XML 的方式是工具提示具有多个十字线,而不是具有多个重叠属性定义的单个十字线。 XML 中的表示和您在代码中的名称使用并不一致:您称整个事物为“十字准线”。在阅读我的原始回复和编辑后的回复时请记住这一点。

因此,为了获得模仿原始 XML 的对象,我希望您提供如下属性:

CrosshairsCollection crosshairsList = new CrosshairsCollection();

Crosshairs c1 = new Crosshairs();
c1.SetProperty("width", 3);
c1.SetProperty("color", "green");
c1.SetProperty("padding", "5px");
crosshairsList.Add(c1);

Crosshairs c2 = new Crosshairs();
c2.SetProperty("width", 3);
c2.SetProperty("color", "blue");
crosshairsList.Add(c2);

更进一步,将每个 Crosshairs 初始化变成一个工厂方法,并将其插入到您的 XML 表示中,就像您在 HCToolTip 中所做的那样构造函数。

然后,您可以将每个名称值对按原样添加到 JSON 输出中:

foreach (Crosshairs crosshairs in crosshairsList) {
Dictionary<string, object> crosshairProps = new Dictionary<string, object>();

foreach (KeyValuePair<string, object> prop in crosshairs.GetAllProperties()) {
crosshairProps.Add(prop.Key, prop.Value);
}

itemsList.Add(crosshairProps);
}

result["crosshairs"] = itemsList;

您可能需要在工具提示上实现一个更高级别的 JavaScriptConverter,以便获得一个匿名列表作为 ToolTip.crosshairs 的属性值。 .

但我希望这表明您真正要找的只是一个键/值集合。我将类(class)命名为 CrosshairsCollectionCrosshairs尝试区分列表<crosshairs>标签和 <crosshairs> 的子树标签。但你可以将它们命名为 MultiPropertyItemCollectionMultiPropertyItem ,或其他什么,因为在实现中没有任何特定类型。

关于c# - XML 导入到 C# 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5732010/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com