初学者尝试使用C#制作天气预报应用程序,无法弄清楚为什么我的代码不起作用

时间:2019-12-07 07:25:29

标签: c# api weather-api openweathermap

因此,在遵循了一些教程并使用https://openweathermap.org/current之后,我得到了一些代码,现在我花了很多时间试图弄清楚为什么它不起作用。我首先制作了Windows Forms应用,然后制作了interface。最初,它可以找到您键入的任何城市的天气,但是我在openweathermap上找不到这样的选项,因此我仅将其限制在韩国首尔。但是我不明白为什么单击按钮后什么也没发生,我认为它应该在文本框中恢复预测。如果有人可以帮助的话,我们将不胜感激。

这是我的完整代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Xml;
using System.Xml.Linq;
using System.IO;
using System.Net;


namespace WindowsFormsApp3
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            string city;

            city = txtcity.Text;

            string uri = string.Format("http://api.openweathermap.org/data/2.5/weather?q=Seoul&mode=xml&appid=78dff84492be32f8b4f77692904607a1", city);

            XDocument doc = XDocument.Load(uri);

            string iconUri = (string)doc.Descendants("icon").FirstOrDefault();

            WebClient client = new WebClient();


            string maxtemp = (string)doc.Descendants("temperature.max").FirstOrDefault();
            string mintemp = (string)doc.Descendants("temperature.min").FirstOrDefault();

            string maxwindm = (string)doc.Descendants("maxwind_mph").FirstOrDefault();
            string maxwindk = (string)doc.Descendants("maxwind_kph").FirstOrDefault();
            string humidity = (string)doc.Descendants("avghumidity").FirstOrDefault();

            string country = (string)doc.Descendants("country").FirstOrDefault();

            string cloud = (string)doc.Descendants("text").FirstOrDefault();


            txtmaxtemp.Text = maxtemp;
            txtmintemp.Text = mintemp;

            txtwindm.Text = maxwindm;
            txtwindk.Text = maxwindk;

            txthumidity.Text = humidity;

            label7.Text = cloud;
            txtcountry.Text = country;

        }

        private void button1_Click(object sender, EventArgs e)
        {

        }
    }
}

1 个答案:

答案 0 :(得分:0)

您在链接中烧毁了您要求某个城市(首尔)的信息:

"http://api.openweathermap.org/data/2.5/weather?q***=Seoul***&mode=xml&appid=78dff84492be32f8b4f77692904607a1"

您的代码中没有信息表明您在此链接中对其进行了更改。请试试这个:

String.Format("http://api.openweathermap.org/data/2.5/weather?q={0}&mode=xml&appid=78dff84492be32f8b4f77692904607a1",city);

希望会好的:)