提问人:Maheswari Ganapathy 提问时间:4/13/2023 最后编辑:Peter CsalaMaheswari Ganapathy 更新时间:4/13/2023 访问量:44
在 Windows 表单应用程序中将 json 转换为 XML
Convert json into XML in windows forms Applications
问:
在 Windows 窗体中,我需要连接到 json 文件并将其转换为 xml 文件。
我试过这个:
string json = @"{
'?xml': { '@version': '1.0', '@standalone': 'no' }, 'root': { 'person': [ { '@id': '1', 'name': 'Alan', 'url': 'http://www.google.com' }, { '@id': '2', 'name': 'Louis', 'url': 'http://www.yahoo.com' } ] } }";
XmlDocument doc = (XmlDocument)JsonConvert.DeserializeXmlNode(json);
但它没有转换,它仍然显示 json 视图。
答: 暂无答案
下一个:在 HTML 电子邮件中嵌入图像
评论