-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathtest_weather.java
More file actions
212 lines (181 loc) · 5.44 KB
/
test_weather.java
File metadata and controls
212 lines (181 loc) · 5.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import io.github.kloping.qqbot.Starter;
import io.github.kloping.qqbot.impl.ListenerHost;
import io.github.kloping.qqbot.api.message.MessageEvent;
import io.github.kloping.qqbot.entities.qqpd.message.RawMessage;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import java.io.IOException;
/**
* @author github.kloping
*/
public class test_weather {
public static void main(String[] args) throws Exception {
Starter starter = test_main.factory();
starter.run();
String w0 = String.format("<@!%s> /天气", starter.getBot().getInfo().getId());
starter.registerListenerHost(new ListenerHost() {
@EventReceiver
private void event(MessageEvent event) {
RawMessage message = event.getRawMessage();
String content = message.getContent();
if (content == null && content.isEmpty()) {
return;
} else if (content.startsWith(w0)) {
String s = content.substring(w0.length());
message.send("<@!" + message.getAuthor().getId() + "> \n" + w0(s.trim()));
}
}
});
}
public static String w0(String s0) {
try {
Document document = null;
try {
document = Jsoup.connect("http://kloping.top/api/get/weather?address=" + s0).ignoreContentType(true)
.get();
} catch (IOException e) {
e.printStackTrace();
}
String json = document.body().text();
JSONObject jo = JSON.parseObject(json);
WeatherDetail wd = jo.toJavaObject(WeatherDetail.class);
StringBuilder sb = new StringBuilder();
sb.append(wd.getTime()).append("\n");
sb.append(wd.getAddress()).append(":").append(wd.getDescribed()).append("\n");
sb.append(wd.getWind()).append("\n");
sb.append(wd.getAir()).append("\n");
sb.append(wd.getHumidity()).append("\n");
sb.append(wd.getPm()).append("\n");
sb.append("现在温度:").append(wd.getTemperatureNow()).append("\n");
sb.append("今日温度:").append(wd.getTemperature()).append("\n");
sb.append(wd.getUva()).append("\n");
sb.append(wd.getSunOn()).append("\n");
sb.append(wd.getSunDown()).append("\n");
return sb.toString().trim();
} catch (Exception e) {
e.printStackTrace();
return "查询失败";
}
}
public static class WeatherDetail {
/**
* 地名
*/
private String address;
/**
* 描述
*/
private String described;
/**
* 湿度
*/
private String humidity;
/**
* 风向
*/
private String wind;
/**
* 紫外线强度
*/
private String uva;
/**
* 温度
*/
private String temperature;
/**
* 现在温度
*/
private String temperatureNow;
/**
* PM
*/
private String pm;
/**
* 日出
*/
private String sunOn;
/**
* 日落
*/
private String sunDown;
/**
* 时间
*/
private String time;
private String air;
public String getAir() {
return air;
}
public void setAir(String air) {
this.air = air;
}
public String getTime() {
return time;
}
public void setTime(String time) {
this.time = time;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getDescribed() {
return described;
}
public void setDescribed(String described) {
this.described = described;
}
public String getHumidity() {
return humidity;
}
public void setHumidity(String humidity) {
this.humidity = humidity;
}
public String getWind() {
return wind;
}
public void setWind(String wind) {
this.wind = wind;
}
public String getUva() {
return uva;
}
public void setUva(String uva) {
this.uva = uva;
}
public String getTemperature() {
return temperature;
}
public void setTemperature(String temperature) {
this.temperature = temperature;
}
public String getTemperatureNow() {
return temperatureNow;
}
public void setTemperatureNow(String temperatureNow) {
this.temperatureNow = temperatureNow;
}
public String getPm() {
return pm;
}
public void setPm(String pm) {
this.pm = pm;
}
public String getSunOn() {
return sunOn;
}
public void setSunOn(String sunOn) {
this.sunOn = sunOn;
}
public String getSunDown() {
return sunDown;
}
public void setSunDown(String sunDown) {
this.sunDown = sunDown;
}
}
}