VB.NET - 使用 Json.NET 将 Json 转换为 Xml

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/33437457/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-17 19:32:19  来源:igfitidea点击:

VB.NET - Convert Json to Xml using Json.NET

jsonvb.netjson.net

提问by qckmini6

Is there any possible way to convert direct url to json into xml as text into one textbox?

是否有任何可能的方法将直接 url 到 json 转换为 xml 作为文本到一个文本框?

Example:

例子:

 Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    Dim Json1 as string = "http://pastebin.com/raw.php?i=p3uBzBtm"
    Dim jss = New JsonSerializer()
    Dim response2 = jss.Deserialize(Of Object)(Json1)
    textbox1.text = response2
End Sub

Sorry for this bad example, I'm newbie in this language.

对于这个不好的例子,我很抱歉,我是这种语言的新手。

回答by F????? A???

Use this code:

使用此代码:

Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    Dim Json1 As String = New WebClient().DownloadString("http://pastebin.com/raw.php?i=p3uBzBtm")
    Dim str = JsonConvert.DeserializeXmlNode(Json1)
    TextBox1.Text = str.OuterXml
End Sub

For multiple nodes you will want something like this:

对于多个节点,您将需要这样的东西:

Dim Json1 As String = "{ 'root': " & New WebClient().DownloadString("http://pastebin.com/raw.php?i=ugZrw4d6") & " }"
Dim doc As XmlDocument = JsonConvert.DeserializeXmlNode(Json1)
Dim result As String = doc.ChildNodes(0).InnerXml
TextBox1.Text = result