If you created an object with Jsoup.parse ("html content")
ex ) Document doc = Jsuop.parse("....");
Elements select = doc.select("a[class=asset-link]"); as in select from jquery
After selecting, you can get the value with select.attr ("data-asset-id").
© 2024 OneMinuteCode. All rights reserved.