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.
每次使用该应用程序时,Jsoup 都会从网站更新数据吗??即,如果 JSOUP 从网站获取数据,那么当我再次使用该应用程序或仅使用之前提取的数据时,它会再次获取数据吗?
每次使用parse()or方法时,Jsoup 都会加载数据get()。这些方法将返回Document包含您处理的所有代码的 a。
parse()
get()
Document
parse()因此,在您调用或get()再次调用之前,内容不会更新。您可以选择元素或进行更改,但不会有来自源的更新。