We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3609949 commit d965eaaCopy full SHA for d965eaa
src/moe/feo/bbstoper/Crawler.java
@@ -58,7 +58,7 @@ public void resolveWebData() {
58
for (Element rows : listbody.getElementsByTag("tr")) {// tr是表的一行
59
Elements cells = rows.getElementsByTag("td");// td表示一行的单元格,cells为单元格的合集
60
String action = cells.get(2).text();
61
- if (!(action.equals("提升(提升卡)")||action.equals("提升(服务器提升卡)"))) {// 这里过滤掉不是提升卡的操作
+ if (!(action.equals("提升(提升卡)")||action.equals("提升(服务器/交易代理提升卡)"))) {// 这里过滤掉不是提升卡的操作
62
continue;
63
}
64
Element idcell = cells.get(0);// 第一个单元格中包含有id
0 commit comments