国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

籃球數據API接口 - 【籃球隊員】API調用示例代碼

zhisheng / 661人閱讀

摘要:野子電競數據官網改版全新登場籃球隊員獲取返回內容這里為了方便測試我使用了一份本地文件,使用時應替換為真實接口返回內容

野子電競數據官網改版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: 7.籃球隊員

@Website: https://www.xxe.io/

*/
public class BasketballPlayerInfo {

public static void main(String[] args) {
    try {
        String content = getContent();

        JAXBContext jaxbContext = JAXBContext.newInstance(PlayerList.class);
        Unmarshaller unmarshaller = jaxbContext.createUnmarshaller();

        PlayerList list = (PlayerList) unmarshaller.unmarshal(new ByteArrayInputStream(content.getBytes()));
        list.getPlayerList().forEach(System.out::println);

    } catch (Throwable t) {
        t.printStackTrace();
    }
}

/**
 * 獲取API返回內容
 * 

* Note: 這里為了方便測試我使用了一份本地文件,使用時應替換為真實接口返回內容 */ private static String getContent() { try { StringBuilder builder = new StringBuilder(); List lines = Files.readAllLines(Paths.get("./src/main/resources/BasketballPlayerInfo.xml"), StandardCharsets.UTF_8); lines.forEach(builder::append); return builder.toString(); } catch (Throwable t) { t.printStackTrace(); return ""; } } @XmlRootElement(name = "list") public static class PlayerList{ @XmlElement(name = "i") private List playerList; public List getPlayerList() { return playerList; } } public static class Player { @XmlElement(name = "id") private String id; @XmlElement(name = "Number") private String number; @XmlElement(name = "Name_F") private String nameBig; @XmlElement(name = "Name_JS") private String nameGbShort; @XmlElement(name = "Name_J") private String nameGb; @XmlElement(name = "Name_E") private String nameEn; @XmlElement(name = "TeamID") private String teamId; @XmlElement(name = "Place") private String place; @XmlElement(name = "Birthday") private String birthday; @XmlElement(name = "Tallness") private String tallness; @XmlElement(name = "Weight") private String weight; @XmlElement(name = "Photo") private String photo; @XmlElement(name = "NbaAge") private String nbaAge; @XmlElement(name = "Salary") private String salary; @Override public String toString() { return "Player{" + "id="" + id + """ + ", number="" + number + """ + ", nameBig="" + nameBig + """ + ", nameGbShort="" + nameGbShort + """ + ", nameGb="" + nameGb + """ + ", nameEn="" + nameEn + """ + ", teamId="" + teamId + """ + ", place="" + place + """ + ", birthday="" + birthday + """ + ", tallness="" + tallness + """ + ", weight="" + weight + """ + ", photo="" + photo + """ + ", nbaAge="" + nbaAge + """ + ", salary="" + salary + """ + "}"; } }

}

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/116355.html

相關文章

  • 籃球即時比分api接口調用示例代碼

    摘要:分享籃球即時比分接口調用的示例代碼,可查看在線調用文檔,需注冊下即時變化的比分數據獲取返回內容這里為了方便測試我使用了一份本地文件,使用時應替換為真實接口返回內容返回數據如下部分 分享籃球即時比分api接口調用的示例代碼,可查看在線調用文檔,需注冊下https://www.feijing88.com/bas... package com.huaying.demo.basketball;...

    bigdevil_s 評論0 收藏0
  • 籃球即時比分api接口調用示例代碼

    摘要:分享籃球即時比分接口調用的示例代碼,可查看在線調用文檔,需注冊下即時變化的比分數據獲取返回內容這里為了方便測試我使用了一份本地文件,使用時應替換為真實接口返回內容返回數據如下部分 分享籃球即時比分api接口調用的示例代碼,可查看在線調用文檔,需注冊下https://www.feijing88.com/bas... package com.huaying.demo.basketball;...

    mengera88 評論0 收藏0
  • 籃球即時比分api接口調用示例代碼

    摘要:分享籃球即時比分接口調用的示例代碼,可查看在線調用文檔,需注冊下即時變化的比分數據獲取返回內容這里為了方便測試我使用了一份本地文件,使用時應替換為真實接口返回內容返回數據如下部分 分享籃球即時比分api接口調用的示例代碼,可查看在線調用文檔,需注冊下https://www.feijing88.com/bas... package com.huaying.demo.basketball;...

    harriszh 評論0 收藏0
  • 設計模式——工廠模式

    摘要:簡單工廠模式創建單一的對象示例描述工廠模式主要是為了創建對象實例或者類簇抽象工廠關心的是最終產出創建的對象而不關心創建的過程在出現多個類的時候每次創建需要找到對應的類往往比較麻煩這時候通常使用一個函數進行封裝來創建所需要的對象這樣就無需關注 簡單工廠模式(創建單一的對象) 示例1 描述 工廠模式主要是為了創建對象實例或者類簇(抽象工廠), 關心的是最終產出(創建)的對象, 而不關心創建...

    Moxmi 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<