Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图通过标签“c2 l n”来获取这个类的值。
<td class="c2 l n"><span class"generic">0,63</span></td>
在 Jsoup 我试过这个:
String value="c2 l n"; Elements Stock_Data_Change = doc.getElementsByClass(value);
但它一直空着..它与其他类名(如“ju.l”)一起工作得很好,它似乎错过了空格。有谁知道这个的解决方案?
正如戴夫牛顿在上面的评论中回答的那样,我们谈论的是元素,其中包含多个类。为了得到这个元素的值,这一行为我抓取了它。
Element Stock_Data_Change = doc.select("td.c2.l.n");