我試圖讓網站的標題,如果字符串包含標題代碼檢查是不是「空」。如果它不爲空,它將執行其餘的代碼。Jsoup不會分析我的網站
try {
Document htmlDocument = Jsoup.connect("http://afterlifesolutions.com/theaterstore/app-featured.php").userAgent("Mozilla").get();
htmlContentInString = htmlDocument.title();
if(htmlContentInString != null) {
isNull = false;
}
} catch (IOException e) {
e.printStackTrace();
}
問題是
htmlContentInString = htmlDocument.title();
if(htmlContentInString != null)
應用程序將跳過 'if語句',因爲它沒有收到稱號。但是代碼在其他網站上完美運行。
並在html有絲毫不差? – efekctive
你記錄了htmlDocument,也許你沒有收到任何東西? –
@efekctive這是我試圖從http://afterlifesolutions.com/theaterstore/app-featured.php獲取數據的網站,是的,它具有標題標籤 – Afterlife