1
막혔습니다. 어떻게 같은 이름의 자식 노드를 가진 노드를 파싱합니까? 이 예제에서는 속도 특성을 가진 노드가 필요합니다.SimpleXMLConverter parse xml nodes
<xml>
<Rates>
<Rates winrate_cap="9999">
<Rates rate="323"/>
<Rates rate="343"/>
<Rates rate="2338"/>
<Rates rate="233"/>
</Rates>
</Rates>
</xml>
내 응답 래퍼 클래스 : 당신은 올바른 방법에 있습니다
@Root(name = "xml", strict = false)
public class XMLResponse {
@ElementList(entry = "Rates")
public List<Rates> response;
public static class Rates {
@Attribute(name = "winrate_cap", required = false)
public String winrate_cup;
@ElementList(required = false, entry = "Rates")
public List<Rates> rates;
}
public static class Rates {
@Attribute(name = "rate", required = false)
public String rate;
}
}