纠正了一些bug 尝试使用javafx做图形化界面, 但是不会做就g了 解析:fastjson解析B站Api的JSON数据 存取和判断:List 普通的for循环判断有无
package com.example.pachong3;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.jacob.activeX.ActiveXComponent;
import com.jacob.com.Dispatch;
import com.jacob.com.Variant;
import org.jsoup.Connection;
import org.jsoup.Jsoup;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
public class jsoup {
public static void main(String[] args) throws IOException, InterruptedException {
ActiveXComponent activeXComponent = new ActiveXComponent("Sapi.SpVoice");
Dispatch sapo = activeXComponent.getObject();
activeXComponent.setProperty("Volume", new Variant(100));
activeXComponent.setProperty("Rate", new Variant(2));
Scanner in = new Scanner(System.in);
System.out.println("请输入你需要进入的房间号");
int roomNum = in.nextInt();
List<person> list = new ArrayList<>();
while(true)
{
Thread.sleep(3 * 1000);
Connection.Response document = Jsoup.connect("https://api.live.bilibili.com/xlive/web-room/v1/dM/gethistory?roomid="+roomNum).timeout(5000).userAgent("Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9.2.15").ignoreContentType(true).execute();
JSONObject parse = JSON.parseObject(document.body());
JSONObject data = (JSONObject) parse.get("data");
JSONArray room = data.getJSONArray("room");
for (int i = 0; i < room.toArray().length; i++) {
JSONObject name = (JSONObject) room.get(i);
String nickname = name.get("nickname").toString();
String text = name.get("text").toString();
boolean f = false;
for (int j = 0; j < list.size(); j++) {
if(list.get(j).getNickname().equals(nickname)&&list.get(j).getText().equals(text))
{
f = true;
continue;
}
}
if(!f)
{
list.add(new person(nickname,text));
System.out.println(nickname+":"+text);
Dispatch.call(sapo, "Speak", new Variant(text));
}
}
}
}
}
|