1

xml 结构如下所示。我想将 idname="hotelId" value="00000000003054D8"和 idname="offerId" value="74"传递给Jsoup 的 Connectdata()方法。

<GetBookingIdsRequest token="f6ERmpwxbZ4ysUgCHB9mlSPcd9rf5DVB39C--yLbNSdG" sid="TVd8DY5OQi2vf82h" xmlns="http://www.travelfusion.com/xml/api/simple">
        <id name="hotelId" value="00000000003054D8"/>
        <id name="offerId" value="74"/>
</GetBookingIdsRequest>

我如何通过相同的?

4

2 回答 2

0

这是一个如何获取值的示例:

Document doc = ...

Elements request = doc.select("getbookingidsrequest");


for( Element element : request )
{
    final String hotelId = element.select("id[name=hotelId]").first().attr("value");
    final String offerId = element.select("id[name=offerId]").first().attr("value");

    System.out.println(hotelId);
    System.out.println(offerId);
}

输出:

00000000003054D8
74

如果您只有一个GetBookingIdsRequest-tag,则可以使用first()方法而不是for-loop:

Document doc = ...

Element request = doc.select("getbookingidsrequest").first();

final String hotelId = request.select("id[name=hotelId]").first().attr("value");
final String offerId = request.select("id[name=offerId]").first().attr("value");

System.out.println(hotelId);
System.out.println(offerId);
于 2013-02-26T09:56:06.363 回答
0

您可以将以下内容作为Connection对象数据映射的一部分传递。

map.put("id[0].name", "hotelId");
map.put("id[0].value", hotel_Id);
map.put("id[1].name", "offerId");
map.put("id[1].value", offer_Id);
于 2013-02-26T11:23:46.730 回答