我有一个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”类,其中包含一些默认情况下在构造函数中设置的公共变量。构造函数还读取XML文件并用XML中的值覆盖公共变量(例如,写入“公共字符串文本;”,但工具提示的“十字准线”部分可以包含1个或多个元素 - I不想为十字准线定义一个类,因为十字准线内的标签可能不仅仅是上面定义的2(宽度,颜色)。例如(填充,边距,fontSize等)
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;
}
}
感谢代码和转换器网站的链接。我添加了一些代码并且有点做了一些事情,但我还有一些问题。
如何将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文件中引入细节。
我已经在Converter类中添加了但是我现在得到的输出是这样的:
工具提示:{ borderColor:“#F00” 十字准线:{ 清单:[ { 价值:{ 宽度:“3” 颜色:“绿色” } 文字:{ 宽度:“3” 颜色:“蓝色” } } ] } enabled:true
}
我确实将示例转换器更改为具有以下行:
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;
正如你所看到的那样,它看起来并不是非常通用,因为它使用了“CrosshairsCollection”的类型,但我有点猜测我可以将“CrosshairsCollection”更改为“GenericCollection”,因为它只是一个字典 - 所以#1仍然适用。
如果有人可以帮助上面的#1 - 将数据从XML导入 - 通用类而不是预定义的类,那么它确实会有所帮助。
再次 - 非常感谢你的帮助。 艾伦
答案 0 :(得分:2)
定义一个简单的十字准线类型,它是字符串的包装器,对象字典:
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;
您可能需要在ToolTip上实现一个更高级别的JavaScriptConverter,以获取匿名列表作为ToolTip.crosshairs
的属性值。
我希望这显示的是,你真正想要的只是一个关键/价值收集。我将类命名为CrosshairsCollection
和Crosshairs
,以尝试区分<crosshairs>
标记列表和<crosshairs>
标记的子树。但是你可以将它们命名为MultiPropertyItemCollection
和MultiPropertyItem
,或者其他什么,因为实现中没有特定的类型。