mirror of
https://github.com/bizhangjie/CatVodSpider.git
synced 2025-10-27 18:12:22 +00:00
'更新可用状态'
This commit is contained in:
@@ -87,7 +87,7 @@ public class MainActivity extends Activity {
|
||||
|
||||
public void categoryContent() {
|
||||
try {
|
||||
Logger.t("categoryContent").d(spider.categoryContent("guochan", "2", true, new HashMap<>()));
|
||||
Logger.t("categoryContent").d(spider.categoryContent("guochan", "1", true, new HashMap<>()));
|
||||
} catch (Throwable e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
||||
@@ -56,10 +56,10 @@ public class CaoLiu extends Spider {
|
||||
String pic = element.select("img").attr("data-aes");
|
||||
String id = element.select("img").attr("alt");
|
||||
// 获取图片进行解密
|
||||
String string = OkHttp.string(pic);
|
||||
String picView = aesDecrypt(string);
|
||||
// String string = OkHttp.string(pic);
|
||||
// String picView = aesDecrypt(string);
|
||||
String name = "看圖片";
|
||||
list.add(new Vod(id, name, picView));
|
||||
list.add(new Vod(id, name, pic));
|
||||
} catch (Exception e) {
|
||||
}
|
||||
}
|
||||
@@ -120,9 +120,9 @@ public class CaoLiu extends Spider {
|
||||
String href = element.attr("data-url").replace("read.php?tid=", "").split("&")[0];
|
||||
String name = element.select("h2").text();
|
||||
// 获取图片进行解密
|
||||
String string = OkHttp.string(pic);
|
||||
String picView = aesDecrypt(string);
|
||||
list.add(new Vod(href, name, picView));
|
||||
// String string = OkHttp.string(pic);
|
||||
// String picView = aesDecrypt(string);
|
||||
list.add(new Vod(href, name, pic));
|
||||
}
|
||||
}
|
||||
// 文字列表模版
|
||||
|
||||
Reference in New Issue
Block a user