在 省市区数据获取 - Jsoup解析网页获取 中我们解析到了我们想要的数据,不用人工去获取了,但是我们还是有写问题。
- 想打印出sql语句,用于将数据插入到数据库
- 打印json,供前端使用
- 获取gps经纬度
- 可能还有第四、五种情况,甚至更多
- 这么多种情况,我不一样都需要。可能现在要sql和json,过一天只要gps经纬度,又过一天都要
所以就是要我们的功能可插拔,这种情况我们可以使用装饰器模式处理。参考装饰器模式
下面是获取省市区数据-装饰器方式的UML
类图,可以很清晰的看出他们之间的关系。
核心方法就是parseProvinces
。大家可以看具体的代码。我们看到JsonCityParserDecorator
装饰器输出json,SqlCityParserDecorator
输出插入语句的sql,LocationCityParserDecorator
则获取城市的gps经纬度并打印。
json格式的打印比较简单,直接用gson将对象转换成json就ok了。在附录中能获取到总的json。
那sql
呢?你得有数据库吧?你得有表吧?你得有插入语句格式吧?
那location
呢?你从哪里获取城市的gps经纬度?
下面就有我们要的答案。
省市区表结构设计
我们用mysql
作为数据库,下面是表结构设计:
create table tb_province_city_county
(
id bigint unsigned not null auto_increment comment '主键id',
name varchar(16) not null default '' comment '城市名称',
code varchar(6) not null default '' comment '城市代码',
full_spell varchar(128) not null default '' comment '全拼,北京全拼为beijing',
easy_spell varchar(16) not null default '' comment '简拼,北京简拼为bj',
initial char(1) not null default '' comment '首字母,北京首字母为b',
parent_code varchar(6) not null default '' comment '父级城市代码',
depth tinyint unsigned not null default 0 comment '等级:省=1,市=2,县区=3',
is_del tinyint unsigned not null default 0 comment '是否删除:0=未删除;1=删除',
editor varchar(32) not null default '' comment '编辑人',
editor_id bigint unsigned not null default 0 comment '编辑人id',
edit_time datetime not null default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP comment '编辑时间',
creator varchar(32) not null default '' comment '创建人',
creator_id bigint unsigned not null default 0 comment '创建人id',
create_time datetime not null default CURRENT_TIMESTAMP comment '创建时间',
primary key (id)
);
alter table tb_province_city_county comment '省市县(区)表';
我们看到有名称、代码、全拼、简拼、首字母等等。所以就是要得到这些,生成sql。下面是一个sql模板。
insert into tb_province_city_county(`name`, `code`, full_spell, easy_spell, initial, parent_code, depth) values ('江西', '36', 'jiangxi', 'jx', 'j', '', '1');
现在我们该有的都有了,具体的实现在项目源码中的SqlCityParseDecorator
类里。
我已经生成了一份sql了,大家可以在附录总获取到对应的地址。
gps经纬度
要获取到城市的gps经纬度,其实也不难,百度已经帮我们做了,我们只要调用相应的api就ok了。
查看百度API,就能得到我们想要的了。
附录
项目源码
在CityParserDemo
类中,可以查看演示效果
项目文档
有省市区的json格式数据、表结构、插入sql、UML
类图