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.
我正在使用 java 控制台应用程序。我想监控一个网站。如果某些网页发生任何更改,将调用一个过程。这怎么可能?
您可以使用httpclient'get' 网页的 html 内容作为String,然后使用String.equals()方法来比较内容。
httpclient
String
String.equals()
您可以使用 HttpClient 获取远程文件(如网页)的头部。然后解析last-modified标题并将其与最后一个已知日期进行比较。
last-modified
有关详细信息,请参阅此答案。