分享下近期使用【球员资料】接口调用的示例代码。
近期感觉并没有遇到什么难点,很易用,另外作为足球比分数据API接口还是挺全面的
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: 24.球员资料
*/
public class FootballPlayerInfo {
public static void main(String[] args) {
try {
String content = getContent();
JAXBContext jaxbContext = JAXBContext.newInstance(PlayerList.class);
Unmarshaller unmarshaller = jaxbContext.createUnmarshaller();
PlayerList leagueList = (PlayerList) unmarshaller.unmarshal(new ByteArrayInputStream(content.getBytes()));
leagueList.getPlayerList().forEach(item -> System.out.println(item));
} catch (Throwable t) {
t.printStackTrace();
}
}
/**
* 获取API返回内容
*
* Note: 这里为了方便测试我使用了一份本地文件,使用时应替换为真实接口返回内容
*/
private static String getContent() {
try {
StringBuilder builder = new StringBuilder();
List<String> lines = Files.readAllLines(Paths.get("./src/main/resources/FootballPlayerInfo.xml"), StandardCharsets.UTF_8);
lines.forEach(line -> builder.append(line));
return builder.toString();
} catch (Throwable t) {
t.printStackTrace();
return "";
}
}
@XmlRootElement(name = "list")
public static class PlayerList{
@XmlElement(name = "i")
private List<Player> playerList;
public List<Player> getPlayerList() {
return playerList;
}
}
@XmlRootElement
publ