JAVA入门第二季慕课课程

源代码

链接:https://pan.baidu.com/s/1JpaazJCJXBktuFxeOhKsUw
提取码:1234
代码来自课程,仅供学习使用。
侵删


```java
package com.imooc.weather;

import com.imooc.weather.impl.WeatherUtilsImpl;

import java.util.List;
import java.util.Scanner;

public class Application {
    public static void main(String[] args) {
        System.out.println("查询最近天气预报: ");
        System.out.println("输入1: 查询未来24小时天气预报 ");
        System.out.println("输入2: 查询未来3天天气预报 ");
        System.out.println("输入3: 查询未来7天天气预报 ");
        System.out.print("请输入您的选择: ");
        Scanner enter = new Scanner(System.in);   // 输入
        int i = enter.nextInt();
        System.out.println("用户输入数字: " + i);
        if (i == 1){
            System.out.print("请输入城市名称查询未来24小时天气预报: ");
            String city = enter.next();
            WeatherUtils weatherUtils = new WeatherUtilsImpl();
            List<HourWeather> weatherList = weatherUtils.w24h("ce0a9b9e0b9b4412b89470c8f4a4b6fe", city);
            // System.out.println(weatherList);
            if  (weatherList.size() == 0) {
                System.out.println("没有查询到城市天气数据: ");
            }
            else {
                for (HourWeather hourWeather : weatherList) {
                    String temple = "%s 月 %s 日 %s 时 | %-3s | %-20s | %-8s | %-4s ℃";   // - 代表左对齐
                    String row = String.format(temple, new String[]{
                            hourWeather.getMonth(),
                            hourWeather.getDay(),
                            hourWeather.getHour(),
                            hourWeather.getWindDirection(),
                            hourWeather.getWindPower(),
                            hourWeather.getWeather(),
                            hourWeather.getTemperature()
                    });
                    System.out.println(row);
                }
            }
        }
        if (i == 2) {
            System.out.print("请输入城市名称查询未来3天天气预报: ");
            String city = enter.next();
            WeatherUtils weatherUtils = new WeatherUtilsImpl();
            List<DayWeather> weatherList = weatherUtils.w3d("ce0a9b9e0b9b4412b89470c8f4a4b6fe", city);
            // System.out.println(weatherList);
            if (weatherList.size() == 0) {
                System.out.println("没有查询到城市天气数据");
            }
            else {
                for (DayWeather weather: weatherList){
                    String temple = "%-2s 月 %-2s 日 | 气温: %s℃(日) %s℃(夜) | 天气: %s(日) %s(夜) | 风力: %s(日) %s(夜)";
                    String row = String.format(temple, new String[] {
                        weather.getMonth(),
                        weather.getDay(),
                        weather.getDayAirTemperature(),
                        weather.getNightAirTemperature(),
                        weather.getDayWeather(),
                        weather.getNightWeather(),
                        weather.getDayWindPower(),
                        weather.getNightWindPower()
                    });
                    System.out.println(row);
                }
            }
        }
        if (i == 3) {
            System.out.print("请输入城市名称查询未来24小时天气预报: ");
            String city = enter.next();
            WeatherUtils weatherUtils = new WeatherUtilsImpl();
            List<DayWeather> weatherList = weatherUtils.w7d("ce0a9b9e0b9b4412b89470c8f4a4b6fe", city);
            // System.out.println(weatherList);
            if(weatherList.size() == 0) {
                System.out.println("没有查询到城市天气数据");
            }
            else {
                for (DayWeather weather : weatherList) {
                    String temple = "%-2s 月 %-2s 日 | 气温: %s℃(日) %s℃(夜) | 天气: %s(日) %s(夜) | 风力: %s(日) %s(夜)";
                    String row = String.format(temple, new String[] {
                            weather.getMonth(),
                            weather.getDay(),
                            weather.getDayAirTemperature(),
                            weather.getNightAirTemperature(),
                            weather.getDayWeather(),
                            weather.getNightWeather(),
                            weather.getDayWindPower(),
                            weather.getNightWindPower()
                    });
                    System.out.println(row);
                }
            }
        }
        System.out.println("查询结束");
    }
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值