C#: как получить значение xml в текстовом поле? - PullRequest
1 голос
/ 04 апреля 2020

У меня есть XML файл

<current>
<city>
<country>JAPAN</country>
</city>
<temperature value="307.07" min="307.07" max="307.07" unit="kelvin"/>
</current>

Мне нужно только значение температуры в текстовом поле,

private void button1_Click(object sender, EventArgs e)
 {
            string url = string.Format("http://xxx/xml");
            XmlDocument doc = new XmlDocument();
            doc.Load(url);
            textbox1.text = ????
}

1 Ответ

2 голосов
/ 04 апреля 2020

Использование xml linq:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.Xml.Linq;
using System.IO;

namespace ConsoleApplication1
{
    class Program
    {
        const string FILENAME = @"c:\temp\test.xml";
        static void Main(string[] args)
        {
            string xml = File.ReadAllText(FILENAME);

            XDocument doc = XDocument.Parse(xml);

            decimal temperature = (decimal)doc.Descendants("temperature").First().Attribute("value");
        }
    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...