足球数据API接口 - 【球员列表资料】API调用示例代码

野子电竞数据官网改版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.ge

你可能感兴趣的:(电竞数据)