天气预报 将1-6天的数据源和7-9天的数据源的信息匹配起来了 代码

简介:

晚上吃了晚饭,拿出两张大白纸,对照中国天气网和好天气网,写了两份图片和信息的对比表,主要匹配的是天气情况图片和文字的对应关系。


然后在程序里,解析的那块,做了一个匹配的IF ELSE处理。把这个问题大致解决了。


并且将JSON接口中的NULL值,和一些DNULL.GIF,NNULL.GIF的BUG都处理为不显示


我的核心思路如下,不晓得有没有更好地解决办法:


/*以下为第七天上午信息*/
				/*
				 * 以下为雨夹雪
				 */
				if(weather_title71.equals("雨或雪")) {
					weather_title71="雨夹雪";
					report[0].setImg1("06");
				}
				/*
				 * 以下为晴朗
				 */
				if(weather_title71.equals("晴")) {
					weather_title71="晴";
					report[0].setImg1("00");
				}
				if(weather_title71.equals("晴朗")) {
					weather_title71="晴";
					report[0].setImg1("00");
				}
			    if(weather_title71.equals("大部晴朗")) {
					weather_title71="晴";
					report[0].setImg1("00");
				}
			    
			    /*
			     * 以下为多云
			     */
			    if(weather_title71.equals("多云")) {
					weather_title71="多云";
					report[0].setImg1("01");
				}
			    if(weather_title71.equals("局部多云")) {
					weather_title71="多云";
					report[0].setImg1("01");
				}
			    if(weather_title71.equals("大部多云")) {
					weather_title71="多云";
					report[0].setImg1("01");
				}
			    if(weather_title71.equals("晴时多云")) {
					weather_title71="多云";
					report[0].setImg1("01");
				}
			    if(weather_title71.equals("早多云/晚转晴")) {
					weather_title71="多云";
					report[0].setImg1("01");
				}
			    if(weather_title71.equals("上午有云/下午后晴")) {
					weather_title71="多云";
					report[0].setImg1("01");
				}
			    
			    /*
			     * 以下为阵雨
			     */
			    if(weather_title71.equals("阵雨")) {
					weather_title71="阵雨";
					report[0].setImg1("03");
				}
			    if(weather_title71.equals("零星阵雨")) {
					weather_title71="阵雨";
					report[0].setImg1("03");
				}
			    if(weather_title71.equals("短暂阵雨")) {
					weather_title71="阵雨";
					report[0].setImg1("03");
				}
			    /*
			     * 以下为阵雪
			     */
			    if(weather_title71.equals("阵雪")) {
					weather_title71="阵雪";
					report[0].setImg1("13");
				}
			    if(weather_title71.equals("雨或阵雪")) {
					weather_title71="阵雪";
					report[0].setImg1("13");
				}
			    if(weather_title71.equals("短暂降雪")) {
			    	weather_title71="阵雪";
			    	report[0].setImg1("13");
			    }
			    if(weather_title71.equals("短暂阵雪")) {
			    	weather_title71="阵雪";
			    	report[0].setImg1("13");
			    }
			    if(weather_title71.equals("零星阵雪")) {
			    	weather_title71="阵雪";
			    	report[0].setImg1("13");
			    }

/*以下为第八天上午信息*/
			    /*
				 * 以下为雨夹雪
				 */
				if(weather_title81.equals("雨或雪")) {
					weather_title81="雨夹雪";
					report[1].setImg1("06");
				}
				/*
				 * 以下为晴朗
				 */
				if(weather_title81.equals("晴")) {
					weather_title81="晴";
					report[1].setImg1("00");
				}
				if(weather_title81.equals("晴朗")) {
					weather_title81="晴";
					report[1].setImg1("00");
				}
			    if(weather_title81.equals("大部晴朗")) {
					weather_title81="晴";
					report[1].setImg1("00");
				}
			    
			    /*
			     * 以下为多云
			     */
			    if(weather_title81.equals("多云")) {
					weather_title81="多云";
					report[1].setImg1("01");
				}
			    if(weather_title81.equals("局部多云")) {
					weather_title81="多云";
					report[1].setImg1("01");
				}
			    if(weather_title81.equals("大部多云")) {
					weather_title81="多云";
					report[1].setImg1("01");
				}
			    if(weather_title81.equals("晴时多云")) {
					weather_title81="多云";
					report[1].setImg1("01");
				}
			    if(weather_title81.equals("早多云/晚转晴")) {
					weather_title81="多云";
					report[1].setImg1("01");
				}
			    if(weather_title81.equals("上午有云/下午后晴")) {
					weather_title81="多云";
					report[1].setImg1("01");
				}
			    
			    /*
			     * 以下为阵雨
			     */
			    if(weather_title81.equals("阵雨")) {
					weather_title81="阵雨";
					report[1].setImg1("03");
				}
			    if(weather_title81.equals("零星阵雨")) {
					weather_title81="阵雨";
					report[1].setImg1("03");
				}
			    if(weather_title81.equals("短暂阵雨")) {
					weather_title81="阵雨";
					report[1].setImg1("03");
				}
			    /*
			     * 以下为阵雪
			     */
			    if(weather_title81.equals("阵雪")) {
					weather_title81="阵雪";
					report[1].setImg1("13");
				}
			    if(weather_title81.equals("雨或阵雪")) {
					weather_title81="阵雪";
					report[1].setImg1("13");
				}
			    if(weather_title81.equals("短暂降雪")) {
			    	weather_title81="阵雪";
			    	report[1].setImg1("13");
			    }
			    if(weather_title81.equals("短暂阵雪")) {
			    	weather_title81="阵雪";
			    	report[1].setImg1("13");
			    }
			    if(weather_title81.equals("零星阵雪")) {
			    	weather_title81="阵雪";
			    	report[1].setImg1("13");
			    }				
				
/*以下为第九天上午信息*/
			    /*
				 * 以下为雨夹雪
				 */
				if(weather_title91.equals("雨或雪")) {
					weather_title91="雨夹雪";
					report[2].setImg1("06");
				}
				/*
				 * 以下为晴朗
				 */
				if(weather_title91.equals("晴")) {
					weather_title91="晴";
					report[2].setImg1("00");
				}
				if(weather_title91.equals("晴朗")) {
					weather_title91="晴";
					report[2].setImg1("00");
				}
			    if(weather_title91.equals("大部晴朗")) {
					weather_title91="晴";
					report[2].setImg1("00");
				}
			    
			    /*
			     * 以下为多云
			     */
			    if(weather_title91.equals("多云")) {
					weather_title91="多云";
					report[2].setImg1("01");
				}
			    if(weather_title91.equals("局部多云")) {
					weather_title91="多云";
					report[2].setImg1("01");
				}
			    if(weather_title91.equals("大部多云")) {
					weather_title91="多云";
					report[2].setImg1("01");
				}
			    if(weather_title91.equals("晴时多云")) {
					weather_title91="多云";
					report[2].setImg1("01");
				}
			    if(weather_title91.equals("早多云/晚转晴")) {
					weather_title91="多云";
					report[2].setImg1("01");
				}
			    if(weather_title91.equals("上午有云/下午后晴")) {
					weather_title91="多云";
					report[2].setImg1("01");
				}
			    
			    /*
			     * 以下为阵雨
			     */
			    if(weather_title91.equals("阵雨")) {
					weather_title91="阵雨";
					report[2].setImg1("03");
				}
			    if(weather_title91.equals("零星阵雨")) {
					weather_title91="阵雨";
					report[2].setImg1("03");
				}
			    if(weather_title91.equals("短暂阵雨")) {
					weather_title91="阵雨";
					report[0].setImg1("03");
				}
			    /*
			     * 以下为阵雪
			     */
			    if(weather_title91.equals("阵雪")) {
					weather_title91="阵雪";
					report[2].setImg1("13");
				}
			    if(weather_title91.equals("雨或阵雪")) {
					weather_title91="阵雪";
					report[2].setImg1("13");
				}
			    if(weather_title91.equals("短暂降雪")) {
			    	weather_title91="阵雪";
			    	report[2].setImg1("13");
			    }
			    if(weather_title91.equals("短暂阵雪")) {
			    	weather_title91="阵雪";
			    	report[2].setImg1("13");
			    }
			    if(weather_title91.equals("零星阵雪")) {
			    	weather_title91="阵雪";
			    	report[2].setImg1("13");
			    }
				
/*以下是下午信息           
 * 
 *                                                                                                               
 *                                                                               
 *
 **/
/*以下为第七天下午信息*/
			    /*
				 * 以下为雨夹雪
				 */
				if(weather_title72.equals("雨或雪")) {
					weather_title72="雨夹雪";
					report[0].setImg2("06");
				}
				/*
				 * 以下为晴朗
				 */
				if(weather_title72.equals("晴")) {
					weather_title72="晴";
					report[0].setImg2("00");
				}
				if(weather_title72.equals("晴朗")) {
					weather_title72="晴";
					report[0].setImg2("00");
				}
			    if(weather_title72.equals("大部晴朗")) {
					weather_title72="晴";
					report[0].setImg2("00");
				}
			    
			    /*
			     * 以下为多云
			     */
			    if(weather_title72.equals("多云")) {
					weather_title72="多云";
					report[0].setImg2("01");
				}
			    if(weather_title72.equals("局部多云")) {
					weather_title72="多云";
					report[0].setImg2("01");
				}
			    if(weather_title72.equals("大部多云")) {
					weather_title72="多云";
					report[0].setImg2("01");
				}
			    if(weather_title72.equals("晴时多云")) {
					weather_title72="多云";
					report[0].setImg2("01");
				}
			    if(weather_title72.equals("早多云/晚转晴")) {
					weather_title72="晴";
					report[0].setImg2("00");
				}
			    if(weather_title72.equals("上午有云/下午后晴")) {
					weather_title72="晴";
					report[0].setImg2("00");
				}
			    
			    /*
			     * 以下为阵雨
			     */
			    if(weather_title72.equals("阵雨")) {
					weather_title72="阵雨";
					report[0].setImg2("03");
				}
			    if(weather_title72.equals("零星阵雨")) {
					weather_title72="阵雨";
					report[0].setImg2("03");
				}
			    if(weather_title72.equals("短暂阵雨")) {
					weather_title72="阵雨";
					report[0].setImg2("03");
				}
			    /*
			     * 以下为阵雪
			     */
			    if(weather_title72.equals("阵雪")) {
					weather_title72="阵雪";
					report[0].setImg2("13");
				}
			    if(weather_title72.equals("雨或阵雪")) {
					weather_title72="阵雪";
					report[0].setImg2("13");
				}
			    if(weather_title72.equals("短暂降雪")) {
			    	weather_title72="阵雪";
			    	report[0].setImg2("13");
			    }
			    if(weather_title72.equals("短暂阵雪")) {
			    	weather_title72="阵雪";
			    	report[0].setImg2("13");
			    }
			    if(weather_title72.equals("零星阵雪")) {
			    	weather_title72="阵雪";
			    	report[0].setImg2("13");
			    }

/*以下为第八天下午信息*/
			    /*
				 * 以下为雨夹雪
				 */
				if(weather_title82.equals("雨或雪")) {
					weather_title82="雨夹雪";
					report[1].setImg2("06");
				}
				/*
				 * 以下为晴朗
				 */
				if(weather_title82.equals("晴")) {
					weather_title82="晴";
					report[1].setImg2("00");
				}
				if(weather_title82.equals("晴朗")) {
					weather_title82="晴";
					report[1].setImg2("00");
				}
			    if(weather_title82.equals("大部晴朗")) {
					weather_title82="晴";
					report[1].setImg2("00");
				}
			    
			    /*
			     * 以下为多云
			     */
			    if(weather_title82.equals("多云")) {
					weather_title82="多云";
					report[1].setImg2("01");
				}
			    if(weather_title82.equals("局部多云")) {
					weather_title82="多云";
					report[1].setImg2("01");
				}
			    if(weather_title82.equals("大部多云")) {
					weather_title82="多云";
					report[1].setImg2("01");
				}
			    if(weather_title82.equals("晴时多云")) {
					weather_title82="多云";
					report[1].setImg2("01");
				}
			    if(weather_title82.equals("早多云/晚转晴")) {
					weather_title82="晴";
					report[1].setImg2("00");
				}
			    if(weather_title82.equals("上午有云/下午后晴")) {
					weather_title82="晴";
					report[1].setImg2("00");
				}
			    
			    /*
			     * 以下为阵雨
			     */
			    if(weather_title82.equals("阵雨")) {
					weather_title82="阵雨";
					report[1].setImg2("03");
				}
			    if(weather_title82.equals("零星阵雨")) {
					weather_title82="阵雨";
					report[1].setImg2("03");
				}
			    if(weather_title82.equals("短暂阵雨")) {
					weather_title82="阵雨";
					report[1].setImg2("03");
				}
			    /*
			     * 以下为阵雪
			     */
			    if(weather_title82.equals("阵雪")) {
					weather_title82="阵雪";
					report[1].setImg2("13");
				}
			    if(weather_title82.equals("雨或阵雪")) {
					weather_title82="阵雪";
					report[1].setImg2("13");
				}
			    if(weather_title82.equals("短暂降雪")) {
			    	weather_title82="阵雪";
			    	report[1].setImg2("13");
			    }
			    if(weather_title82.equals("短暂阵雪")) {
			    	weather_title82="阵雪";
			    	report[1].setImg2("13");
			    }
			    if(weather_title82.equals("零星阵雪")) {
			    	weather_title82="阵雪";
			    	report[1].setImg2("13");
			    }				
				
/*以下为第九天下午信息*/
			    /*
				 * 以下为雨夹雪
				 */
				if(weather_title92.equals("雨或雪")) {
					weather_title92="雨夹雪";
					report[2].setImg2("06");
				}
				/*
				 * 以下为晴朗
				 */
				if(weather_title92.equals("晴")) {
					weather_title92="晴";
					report[2].setImg2("00");
				}
				if(weather_title92.equals("晴朗")) {
					weather_title92="晴";
					report[2].setImg2("00");
				}
			    if(weather_title92.equals("大部晴朗")) {
					weather_title92="晴";
					report[2].setImg2("00");
				}
			    
			    /*
			     * 以下为多云
			     */
			    if(weather_title92.equals("多云")) {
					weather_title92="多云";
					report[2].setImg2("01");
				}
			    if(weather_title92.equals("局部多云")) {
					weather_title92="多云";
					report[2].setImg2("01");
				}
			    if(weather_title92.equals("大部多云")) {
					weather_title92="多云";
					report[2].setImg2("01");
				}
			    if(weather_title92.equals("晴时多云")) {
					weather_title92="多云";
					report[2].setImg2("01");
				}
			    if(weather_title92.equals("早多云/晚转晴")) {
					weather_title92="晴";
					report[2].setImg2("00");
				}
			    if(weather_title92.equals("上午有云/下午后晴")) {
					weather_title92="晴";
					report[2].setImg2("00");
				}
			    
			    /*
			     * 以下为阵雨
			     */
			    if(weather_title92.equals("阵雨")) {
					weather_title92="阵雨";
					report[2].setImg2("03");
				}
			    if(weather_title92.equals("零星阵雨")) {
					weather_title92="阵雨";
					report[2].setImg2("03");
				}
			    if(weather_title92.equals("短暂阵雨")) {
					weather_title92="阵雨";
					report[2].setImg2("03");
				}
			    /*
			     * 以下为阵雪
			     */
			    if(weather_title92.equals("阵雪")) {
					weather_title92="阵雪";
					report[2].setImg2("13");
				}
			    if(weather_title92.equals("雨或阵雪")) {
					weather_title92="阵雪";
					report[2].setImg2("13");
				}
			    if(weather_title92.equals("短暂降雪")) {
			    	weather_title92="阵雪";
			    	report[2].setImg2("13");
			    }
			    if(weather_title92.equals("短暂阵雪")) {
			    	weather_title92="阵雪";
			    	report[2].setImg2("13");
			    }
			    if(weather_title92.equals("零星阵雪")) {
			    	weather_title92="阵雪";
			    	report[2].setImg2("13");
			    }
			    


目录
相关文章
|
2月前
|
API 搜索推荐
|
5月前
|
分布式计算 DataWorks 关系型数据库
DataWorks操作报错合集之出现了传参后提示有字段没映射上,但字段连线都已经正常连接的情况,该如何处理
DataWorks是阿里云提供的一站式大数据开发与治理平台,支持数据集成、数据开发、数据服务、数据质量管理、数据安全管理等全流程数据处理。在使用DataWorks过程中,可能会遇到各种操作报错。以下是一些常见的报错情况及其可能的原因和解决方法。
|
5月前
|
消息中间件 DataWorks 安全
DataWorks产品使用合集之遇到函数被错误识别为数据列名称,该怎么办
DataWorks作为一站式的数据开发与治理平台,提供了从数据采集、清洗、开发、调度、服务化、质量监控到安全管理的全套解决方案,帮助企业构建高效、规范、安全的大数据处理体系。以下是对DataWorks产品使用合集的概述,涵盖数据处理的各个环节。
|
6月前
|
DataWorks 关系型数据库 MySQL
DataWorks数据源暂未绑定数据源,绑定时却显示已经有 1 个是什么回事?
DataWorks数据源暂未绑定数据源,绑定时却显示已经有 1 个是什么回事?
56 2
|
6月前
|
数据管理
宜搭流程中,数据管理批量发起如何成功导入 年-月-日 时:分格式数据 当前数据管理批量发起,Excel文本中编辑时间格式如2023-12-07 20:00,批量导入生成后显示为20231207 00:00,请问如何让时:分正确显示。
宜搭流程中,数据管理批量发起如何成功导入 年-月-日 时:分格式数据 当前数据管理批量发起,Excel文本中编辑时间格式如2023-12-07 20:00,批量导入生成后显示为20231207 00:00,请问如何让时:分正确显示。
189 2
|
JavaScript 数据可视化 搜索推荐
高德地图开发实战案例:使用Loca数据源展示海量点标注(海量点、自定义分类图标、聚合、信息提示、3D控件)
高德地图开发实战案例:使用Loca数据源展示海量点标注(海量点、自定义分类图标、聚合、信息提示、3D控件)
615 0
|
开发者
【示例中心案例分享】表单中级联组件配置表单数据源
宜搭的级联组件不像下拉选择一样可配置关联其他选项,但是每次手动配置级联选项又很痛苦,我们如何借助宜搭的 OpenApi 去实现这个功能呢?我们的三方开发者 「苏灏」带来了他的案例。
449 1
|
运维 Ubuntu 关系型数据库
使用kettle进行多复合来源数据的采集与关联
使用kettle进行多复合来源数据的采集与关联