forked from fyuanfen/PythonSpiderNotes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWallstreetcnSaveTest.java
More file actions
342 lines (299 loc) · 10.4 KB
/
WallstreetcnSaveTest.java
File metadata and controls
342 lines (299 loc) · 10.4 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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
package wallstreetcnsave;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.text.DateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import com.mongodb.BasicDBObject;
import com.mongodb.DB;
import com.mongodb.DBCollection;
import com.mongodb.Mongo;
class WallstreetcnSave implements Runnable {
private GetrequestUrl release;
public WallstreetcnSave(GetrequestUrl url) {
this.release = url; // all threads share the same GetrequestUrl
}
private static String DataBaseName = "textclassify";
private static String CollectionName = "WallstreetSaveJava";
private static String Regex = ".*?\"type\":\"(.*?)\".*?\"contentHtml\":\"<p>(.*?)<\\\\/p>\".*?\"categorySet\":\"(.*?)\".*?";
private static final String REGEXSTRING1 = "type";
private static final String REGEXSTRING2 = "content";
private static final String REGEXSTRING3 = "categoryset";
//map表的存放
public static Map<String, String> GetMap() {
Map<String, String> map = new HashMap<String, String>();
map.put("1", "外汇");
map.put("2", "股市");
map.put("3", "商品");
map.put("4", "债市");
map.put("9", "中国");
map.put("10", "美国");
map.put("11", "欧元区");
map.put("12", "日本");
map.put("13", "英国");
map.put("14", "澳洲");
map.put("15", "加拿大");
map.put("16", "瑞士");
map.put("17", "其他地区");
map.put("5", "央行");
return map;
}
private static String[] ruleList_district = { "9", "10", "11", "12", "13", "14", "15", "16", "17" };
private static String[] ruleList_property = { "1", "2", "3", "4" };
private static String[] ruleList_centralbank = { "5" };
//对x,x,x格式的内容进行分隔筛选
public static String setCategory(String categorySet, String[] ruleList, Map<String, String> map) {
StringBuffer disStr = new StringBuffer();
String[] strArray = null;
strArray = categorySet.split(","); // 拆分字符为",",然后把结果交给数组strArray
// 获取需要的信息
int length_strArray = strArray.length;
int length_ruleList = ruleList.length;
if (length_strArray > 0) {
for (int iArr = 0; iArr < length_strArray; iArr++) {
String s = strArray[iArr];
for (int iRul=0; iRul < length_ruleList; iRul++) {
if (s.equals(ruleList[iRul])) {
disStr.append(map.get(s));
disStr.append(",");
break;
}
}
}
}
if(disStr.length()>1) {
disStr = disStr.deleteCharAt(disStr.length()-1);
}
return disStr.toString();
}
//读取整个页面,返回html字符串
private static String httpRequest(String requestUrl) {
StringBuffer buffer = null;
BufferedReader bufferedReader = null;
InputStreamReader inputStreamReader = null;
InputStream inputStream = null;
HttpURLConnection httpUrlConn = null;
try {
// 建立get请求
URL url = new URL(requestUrl);
httpUrlConn = (HttpURLConnection) url.openConnection();
httpUrlConn.setDoInput(true);
httpUrlConn.setRequestMethod("GET");
// 获取输入流
inputStream = httpUrlConn.getInputStream();
inputStreamReader = new InputStreamReader(inputStream, "UTF-8");
bufferedReader = new BufferedReader(inputStreamReader);
// 从输入流获取结果
buffer = new StringBuffer();
String str = null;
while ((str = bufferedReader.readLine()) != null) {
str = new String(str.getBytes(), "UTF-8");
buffer.append(str);
}
} catch (Exception e) {
e.printStackTrace();
} finally {
if (bufferedReader != null) {
try {
bufferedReader.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (inputStreamReader != null) {
try {
inputStreamReader.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (inputStream != null) {
try {
inputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (httpUrlConn != null) {
httpUrlConn.disconnect();
}
}
return buffer.toString();
}
// 过滤掉无用的信息
public static List<Map<String, String>> htmlFiter(String html, String Regex) {
List<Map<String, String>> list = new ArrayList<Map<String, String>>();
// 查找目标
Pattern p = Pattern.compile(Regex);
Matcher m = p.matcher(html);
while (m.find()) {
Map<String, String> map_save = new HashMap<String, String>();
// 可修改部分
map_save.put(REGEXSTRING1, m.group(1));
map_save.put(REGEXSTRING2, m.group(2));
map_save.put(REGEXSTRING3, m.group(3));
list.add(map_save);
}
return list;
}
//unicode格式转中文
public static String UnicodeToString(String str) {
Pattern pattern = Pattern.compile("(\\\\u(\\p{XDigit}{4}))"); // XDigit表示16进制数字,正则里的\p表示Unicode块
Matcher matcher = pattern.matcher(str);
char ch;
while (matcher.find()) {
ch = (char) Integer.parseInt(matcher.group(2), 16); // 16进制转10进制作为ascii码,再char转为字符
str = str.replace(matcher.group(1), ch + "");
}
return str;
}
public void run() {
while(true) { // 循环体!!!
// 链接数据库
try {
Mongo mongo = new Mongo("localhost", 27017);
DB db = mongo.getDB(DataBaseName);
DBCollection collection = db.getCollection(CollectionName);
// 调用抓取的方法获取内容
String requestUrl = this.release.GetMethod();
if(requestUrl.equals("")) {
break;
} else {
System.out.println(requestUrl);
String html = httpRequest(requestUrl);
List<Map<String, String>> resultList = htmlFiter(html, Regex);
if (resultList.isEmpty()) {
System.out.printf("The end url: %s", requestUrl);
break;
} else {
for (Map<String, String> result : resultList) {
BasicDBObject dbObject = new BasicDBObject();
String type = result.get(REGEXSTRING1);
String content = UnicodeToString(result.get(REGEXSTRING2));
Map<String, String> map = GetMap();
String district = setCategory(result.get(REGEXSTRING3), ruleList_district, map);
String property = setCategory(result.get(REGEXSTRING3), ruleList_property, map);
String centralbank = setCategory(result.get(REGEXSTRING3), ruleList_centralbank, map);
Date date = new Date();
DateFormat time = DateFormat.getDateTimeInstance();
String time_str = time.format(date);
String source = "wangstreetcn";
dbObject.put("content", content); // 具体内容
dbObject.put("createdtime", time_str); // 创建时间
dbObject.put("source", source); // 信息来源
dbObject.put("district", district); // 所属地区
dbObject.put("property", property); // 资产类别
dbObject.put("centralbank", centralbank); // 资产类别
dbObject.put("type", type); //信息类型
collection.insert(dbObject);
}
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
public void run1() {
while(true) { // 循环体!!!
// 链接数据库
try {
Mongo mongo = new Mongo("localhost", 27017);
DB db = mongo.getDB(DataBaseName);
DBCollection collection = db.getCollection(CollectionName);
// 调用抓取的方法获取内容
String requestUrl = this.release.GetMethod();
if(requestUrl.equals("")) {
break;
} else {
System.out.println(requestUrl);
String html = httpRequest(requestUrl);
List<Map<String, String>> resultList = htmlFiter(html, Regex);
if (resultList.isEmpty()) {
System.out.printf("The end url: %s\n", requestUrl);
break;
} else {
for (Map<String, String> result : resultList) {
BasicDBObject dbObject = new BasicDBObject();
String type = result.get(REGEXSTRING1);
String content = UnicodeToString(result.get(REGEXSTRING2));
Map<String, String> map = GetMap();
String district = setCategory(result.get(REGEXSTRING3), ruleList_district, map);
String property = setCategory(result.get(REGEXSTRING3), ruleList_property, map);
String centralbank = setCategory(result.get(REGEXSTRING3), ruleList_centralbank, map);
Date date = new Date();
DateFormat time = DateFormat.getDateTimeInstance();
String time_str = time.format(date);
String source = "wangstreetcn";
dbObject.put("content", content); // 具体内容
dbObject.put("createdtime", time_str); // 创建时间
dbObject.put("source", source); // 信息来源
dbObject.put("district", district); // 所属地区
dbObject.put("property", property); // 资产类别
dbObject.put("centralbank", centralbank); // 资产类别
dbObject.put("type", type); //信息类型
collection.insert(dbObject);
}
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
/**
* contain shared resource
*/
class GetrequestUrl {
private String url = "http://api.wallstreetcn.com/v2/livenews?&page=";
private int start;
private int end = 5000;
public GetrequestUrl(int start)
{
this.start = start;
}
public GetrequestUrl(int start, int end)
{
this.start = start;
this.end = end;
}
/**
* Thread safe method
*/
public synchronized String GetMethod() // 利用synchronized修饰符同步了整个方法
{
if(this.start <= this.end) {
String requestUrl = this.url+this.start;
this.start = this.start+1;
return requestUrl;
}
else {
return "";
}
}
}
public class WallstreetcnSaveTest {
public static void main(String[] args) {
// 多线程抓取
int start = 1;
GetrequestUrl url = new GetrequestUrl(start);
// int start = 1, end = 3000;
// GetrequestUrl url = new GetrequestUrl(start, end);
int thread_num = 1;
while(true) {
if(thread_num++ > 8) break;
Thread thread = new Thread(new WallstreetcnSave(url));
thread.start();
}
}
}