107 lines
3.5 KiB
Java
107 lines
3.5 KiB
Java
package com.github.catvod.debug;
|
|
|
|
import android.app.Activity;
|
|
import android.os.Bundle;
|
|
import android.widget.Button;
|
|
|
|
import com.github.catvod.R;
|
|
import com.github.catvod.crawler.Spider;
|
|
import com.github.catvod.spider.Init;
|
|
import com.github.catvod.spider.PTT;
|
|
import com.github.catvod.spider.Zxzj;
|
|
import com.orhanobut.logger.AndroidLogAdapter;
|
|
import com.orhanobut.logger.Logger;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.HashMap;
|
|
import java.util.concurrent.ExecutorService;
|
|
import java.util.concurrent.Executors;
|
|
|
|
public class MainActivity extends Activity {
|
|
|
|
private ExecutorService executor;
|
|
private Spider spider;
|
|
|
|
@Override
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
setContentView(R.layout.activity_main);
|
|
Button homeContent = findViewById(R.id.homeContent);
|
|
Button homeVideoContent = findViewById(R.id.homeVideoContent);
|
|
Button categoryContent = findViewById(R.id.categoryContent);
|
|
Button detailContent = findViewById(R.id.detailContent);
|
|
Button playerContent = findViewById(R.id.playerContent);
|
|
Button searchContent = findViewById(R.id.searchContent);
|
|
homeContent.setOnClickListener(view -> executor.execute(this::homeContent));
|
|
homeVideoContent.setOnClickListener(view -> executor.execute(this::homeVideoContent));
|
|
categoryContent.setOnClickListener(view -> executor.execute(this::categoryContent));
|
|
detailContent.setOnClickListener(view -> executor.execute(this::detailContent));
|
|
playerContent.setOnClickListener(view -> executor.execute(this::playerContent));
|
|
searchContent.setOnClickListener(view -> executor.execute(this::searchContent));
|
|
Logger.addLogAdapter(new AndroidLogAdapter());
|
|
executor = Executors.newCachedThreadPool();
|
|
executor.execute(this::initSpider);
|
|
}
|
|
|
|
private void initSpider() {
|
|
try {
|
|
Init.init(getApplicationContext());
|
|
spider = new Zxzj();
|
|
spider.init(this, "");
|
|
} catch (Throwable e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
public void homeContent() {
|
|
try {
|
|
Logger.t("homeContent").d(spider.homeContent(true));
|
|
} catch (Throwable e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
public void homeVideoContent() {
|
|
try {
|
|
Logger.t("homeVideoContent").d(spider.homeVideoContent());
|
|
} catch (Throwable e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
public void categoryContent() {
|
|
try {
|
|
HashMap<String, String> extend = new HashMap<>();
|
|
extend.put("c", "19");
|
|
extend.put("year", "2024");
|
|
Logger.t("categoryContent").d(spider.categoryContent("/list/1.html", "2", true, extend));
|
|
} catch (Throwable e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
public void detailContent() {
|
|
try {
|
|
Logger.t("detailContent").d(spider.detailContent(Arrays.asList("/detail/4463.html")));
|
|
} catch (Throwable e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
public void playerContent() {
|
|
try {
|
|
Logger.t("playerContent").d(spider.playerContent("", "/video/4463-1-1.html", new ArrayList<>()));
|
|
} catch (Throwable e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
public void searchContent() {
|
|
try {
|
|
Logger.t("searchContent").d(spider.searchContent("我的人间烟火", false));
|
|
} catch (Throwable e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
} |