好吧,所以我遇到了對象範圍的問題。我使用Jsoup現在這裏是代碼:Java中變量的範圍 - 問題
//Website is /001.shtml, so adding count to the string wouldn't work.
//This is why I have the ifs
if (count < 10)
{
Document site = Jsoup.connect(url + "00" + count).get();
}
else if (count < 100)
{
Document site = Jsoup.connect(url + "0" + count + ".shtml").get();
}
else
{
Document site = Jsoup.connect(url + count + ".shtml").get();
}
好了,所以我創建了一個名爲 網站上的文檔對象,我需要補充,因爲人員如何使網站,零一定量的不問題。但是,當我嘗試使用site.select(任何東西),我不能因爲對象是在if結構中定義的。
此外,我不能初始化它如果,它不工作,因爲我得到了重複的錯誤拋出。請告訴我有一個解決這個,因爲我已經搜索和搜索無濟於事,我不想將其餘的程序3次放入不同的ifs ...
您應該使用字符串格式。像這樣會使輸入3個數字:String.format(「%03d」,numberValueHere) – user2272115 2014-11-03 04:32:25
你是什麼意思的「它不工作?」請提供錯誤消息幷包含觸發錯誤的最小程序。 – 2014-11-03 05:10:09