gpt4 book ai didi

java - 获取类名Jsoup

转载 作者:行者123 更新时间:2023-12-02 13:35:41 24 4
gpt4 key购买 nike

我正在尝试解析 Android 应用程序的一些 html,但无法获取 data-id 类的值

这是html代码

 <div class="popup event-popup Predavanja" style="display: none;" data-id="246274" data-position="bottom" >

如何解析 246274 值?

最佳答案

如果您有 div 标记的 Element 对象,则此代码将起作用:

String attr = element.attr("data-id"); // get the value of the 'data-id' attribute
int dataID = Integer.parseInt(attr); // convert it to an int

或者,如果您想首先检查该属性是否存在,请使用:

if (element.hasAttr("data-id")) // etc.

关于java - 获取类名Jsoup,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43009354/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com