1
我正在尋找一種簡單的方法來將我的xml轉換爲json,並使用附加選項將完整xpath添加爲屬性。現在我做這種方式:簡化xml到json轉換
private static string XmlToJson(string xmlString)
{
return new JavaScriptSerializer().Serialize(GetXmlValues(XElement.Parse(xmlString)));
}
private static Dictionary<string, object> GetXmlValues(XElement xml)
{
var attr = xml.Attributes().ToDictionary(d => d.Name.LocalName, d => (object)d.Value);
if (xml.HasElements)
{
attr.Add("_children", xml.Elements().Select(e => GetXmlValues(e)));
attr.Add("_path", xml.GetPath());
}
else if (!xml.IsEmpty)
{
attr.Add("_value", xml.Value);
attr.Add("_path", xml.GetPath());
}
return new Dictionary<string, object> { { xml.Name.LocalName, attr } };
}
private static string GetPath(this XElement node)
{
string path = node.Name.LocalName;
XElement currentNode = node;
while (currentNode.Parent != null)
{
currentNode = currentNode.Parent;
path = currentNode.Name.LocalName + "/" + path;
}
return path;
}
但它看起來迂迴比較:
XmlDocument doc = new XmlDocument();
doc.LoadXml(xml);
string jsonText = JsonConvert.SerializeXmlNode(doc);
但那裏我不知道如何皈依過程中添加的路徑?
你是不是從XML轉換成JSON,您創建一個完全不同的表現與'_value'和'_path '擁有......某些東西的屬性。請發佈源XML和期望的JSon輸出的示例。如果要序列化不同的形狀,請在中間步驟(例如,使用LINQ)中執行轉換,然後序列化結果 –