>我使用以下代码向我的xml添加一个属性,以指定该节点在使用JsonConvert.SerializeXmlNode时应返回整数值。
我已将牛顿软件的更新合并到我引用的dll中。
我使用以下代码添加属性:
ele.SetAttribute("Integer", "http://james.newtonking.com/projects/json", "true");
ele
从何而来XmlElement ele = node as XmlElement;
总是以这样的结果结束:
"id": {
"@Type": "Integer",
"#text": "759263947"
},
但我需要的是
"id": 759263947
请注意,我使用完全相同的语法来标识数组:
ele.SetAttribute("Array", "http://james.newtonking.com/projects/json", "true");
工作正常。
劳 拉
使用的是此答案中描述的XmlNodeConverter
变体版本,请在此处获得: https://github.com/lukegothic/Newtonsoft.Json/blob/master/Src/Newtonsoft.Json/Converters/XmlNodeConverter.cs,看起来您需要执行以下操作:
ele.SetAttribute("Type", "http://james.newtonking.com/projects/json", "Integer");
或者,对于双精度值:
ele.SetAttribute("Type", "http://james.newtonking.com/projects/json", "Float");
或者,您可以使用 Linq-to-JSON 开箱即用的方法来手动修改将字符串值转换为数值,例如:
string xml = @"<fulfillment xmlns:json=""http://james.newtonking.com/projects/json""><tracking_number>937467375966</tracking_number><tracking_url>google.com/search?q=937467375966</tracking_url>; <line_items json:Array=""true""><id>759263947</id><quantity>1.00000</quantity></line_items></fulfillment>";
var doc = new XmlDocument();
doc.LoadXml(xml);
var obj = JObject.Parse(JsonConvert.SerializeXmlNode(doc));
foreach (var value in obj.Descendants().OfType<JValue>().Where(v => v.Type == JTokenType.String))
{
long lVal;
if (long.TryParse((string)value, out lVal))
{
value.Value = lVal;
continue;
}
double dVal;
if (double.TryParse((string)value, out dVal))
{
value.Value = dVal;
continue;
}
decimal dcVal;
if (decimal.TryParse((string)value, out dcVal))
{
value.Value = dcVal;
continue;
}
}
var json = obj.ToString();
Debug.WriteLine(json);