野子电竞数据官网改版https://www.xxe.io/全新登场
import javax.xml.bind.JAXBContext;
import javax.xml.bind.Unmarshaller;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import java.io.ByteArrayInputStream;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.List;
/**
@API: 5.球队资料
@Website: https://www.xxe.io/
*/
public class BasketballTeamInfo {
public static void main(String[] args) {
try {
String content = getContent();
JAXBContext jaxbContext = JAXBContext.newInstance(TeamList.class); Unmarshaller unmarshaller = jaxbContext.createUnmarshaller(); TeamList list = (TeamList) unmarshaller.unmarshal(new ByteArrayInputStream(content.getBytes())); list.getTeamList().forEach(System.out::println);
} catch (Throwable t) {
t.printStackTrace();
}
1
2
3
4
5
6
7
8
9
}
/**
获取API返回内容
Note: 这里为了方便测试我使用了一份本地文件,使用时应替换为真实接口返回内容
*/
private static String getContent() {
try {
StringBuilder builder = new StringBuilder();
List lines = Files.readAllLines(Paths.get("./src/main/resources/BasketballTeamInfo.xml"), StandardCharsets.UTF_8);
lines.forEach(builder::append);
return builder.toString();
} catch (Throwable t) {
t.printStackTrace();
return “”;
}
}
@XmlRootElement(name = “list”)
public static class TeamList {
@XmlElement(name = “i”)
private List teamList;
public List
return teamList;
}
1
2
3
}
public static class Team {
@XmlElement(name = “id”)
private String id;
@XmlElement(name = “lsID”)
private String leagueId;
@XmlElement(name = “short”)
private String nameShort;
@XmlElement(name = “gb”)
private String nameGb;
@XmlElement(name = “big5”)
private String nameBig;
@XmlElement(name = “en”)
private String nameEn;
@XmlElement(name = “logo”)
private String logo;
@XmlElement(name = “LocationID”)
private String locationId;
@XmlElement(name = “MatchAddrID”)
private String areaId;
@XmlElement(name = “url”)
private String website;
@XmlElement(name = “City”)
private String city;
@XmlElement(name = “Gymnasium”)
private String gym;
@XmlElement(name = “Capacity”)
private int capacity;
@XmlElement(name = “JoinYear”)
private int joinYear;
@XmlElement(name = “FirstTime”)
private int championCount;
@XmlElement(name = “Drillmaster”)
private String drillmaster;
@Override
public String toString() {
return "Team{" + "id="" + id + """ + ", nameShort="" + nameShort + """ + ", nameGb="" + nameGb + """ + ", nameBig="" + nameBig + """ + ", nameEn="" + nameEn + """ + ", logo="" + logo + """ + ", locationId="" + locationId + """ + ", areaId="" + areaId + """ + ", website="" + website + """ + ", city="" + city + """ + ", gym="" + gym + """ + ", capacity=" + capacity + ", joinYear=" + joinYear + ", championCount=" + championCount + ", drillmaster="" + drillmaster + """ + "}";
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
}
}
————————————————
版权声明:本文为CSDN博主「crooked8」的原创文章,遵循CC 4.0 by-sa版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/crooked...
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/116367.html
摘要:前面的话中的于版本析出,平时项目中也有用到,今天就系统的来实践一下。可以根据队员的年龄进行分组执行结果为费尔南多费尔南迪尼奥隋维杰克鲁伊夫卡尔德克阿德里安结果是一个,为不重复的年龄,为属于该年龄的队员列表。已经实现了分组。 【前面的话】Java中的Stream于1.8版本析出,平时项目中也有用到,今天就系统的来实践一下。下面借用重庆力帆队伍中我个人比较喜欢的球员来操作一波,队员的年龄为...
摘要:也就是说,这个机器学习模型,现在还只能当做一种参考,还不能将场外号召力也计入工资体系中。不过研究者称,无论是足球迷还是非足球迷,这个机器学习模型,都能为未来商品定价提供参考。 内马尔2.2亿欧元转换大巴黎阿森纳主帅温格在位20载,什么样优秀的球员没见过,但现今他也是越来越看不懂转会市场了。温格感叹:不是阿森纳不买人,实在是现今市场上的球员贵得离谱。此言其实不虚。120万英镑的坎通纳帮助弗格森...
摘要:近日各队纷纷发布季前赛赛程,迎接新赛季。实际上,数据分析团队对于现在的球队已经算是标配了,无论是在球员选择还是战术制定上都起着重要的作用。于是,我们就借助官方数据和的绘图函数,来看一看不同的球员都是在什么位置出手投篮的。比如林书豪就是。 showImg(https://segmentfault.com/img/remote/1460000019790849); 作者 | Crossin...
阅读 2941·2021-10-12 10:17
阅读 1572·2021-09-01 11:38
阅读 1056·2019-08-30 15:44
阅读 3458·2019-08-26 18:36
阅读 488·2019-08-26 13:25
阅读 1867·2019-08-26 10:29
阅读 2811·2019-08-23 15:58
阅读 739·2019-08-23 12:59