我使用庫rome.dev.java.net來獲取RSS。有效URL的java.io.FileNotFoundException
代碼是
URL feedUrl = new URL("http://planet.rubyonrails.ru/xml/rss");
SyndFeedInput input = new SyndFeedInput();
SyndFeed feed = input.build(new XmlReader(feedUrl));
您可以檢查http://planet.rubyonrails.ru/xml/rss是有效的URL和頁面在瀏覽器中顯示。
但我從我的應用程序
java.io.FileNotFoundException: http://planet.rubyonrails.ru/xml/rss
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1311)
at com.sun.syndication.io.XmlReader.<init>(XmlReader.java:237)
at com.sun.syndication.io.XmlReader.<init>(XmlReader.java:213)
at rssdaemonapp.ValidatorThread.run(ValidatorThread.java:32)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:619)
我不使用任何代理獲取例外。我在我的PC和生產服務器上得到這個例外,只有這個URL,其他的URL才能正常工作。
我試圖讓頁面使用apacha HttpClient,它的工作原理!看到我的答案。 – Alexei 2010-05-08 13:30:33