1

我尝试使用 Json.Net 将我的 XML 字符串转换为 Json

在 Json.Net文档中,它说我必须使用此代码将 xml 转换为 json:

string xml = @"<person id='1'>
         <name>Alan</name>
        <url>http://www.google.com</url>
         <role>Admin1</role>
     </person>";

 XmlDocument doc = new XmlDocument();
 doc.LoadXml(xml);

string json = JsonConvert.SerializeXmlNode(doc);

但是在我的 Windows 8 应用程序中,我找不到 XmlDocument 类,也找不到 SerializeXmlNode。

我尝试了这些类和函数:

 var result = await response.Content.ReadAsStringAsync();
 XDocument xdoc = new XDocument();
 xdoc = XDocument.Load(result);
 // Parse the JSON Radio data
 string jsonText = JsonConvert.SerializeXNode(xdoc);
 var radios = JsonArray.Parse(result);

但我收到以下错误:

An exception of type 'System.ArgumentException' occurred in mscorlib.dll but was not handled in user code

Additional information: Illegal characters in path.

If there is a handler for this exception, the program may be safely continued.

结果我加载了正确的xml。从...开始:

<?xml version="1.0" encoding="utf-8"?>
<item>...</item>
4

1 回答 1

5

使用XDocument.Parse而不是XDocument.Load从 url 加载 xml

于 2012-09-05T07:58:02.833 回答