我試圖通過文檔的關鍵字獲取特定文檔。我在這裏的操作說明:https://code.google.com/apis/spreadsheets/data/3.0/reference.html#ConstructingURIsJava GData Spreadsheets API無法獲取Feed
我從URL的關鍵是:https://spreadsheets.google.com/ccc?key=0Aoz...mcmc&hl=en#gid=0
URL feedUrl = new URL("https://spreadsheets.google.com/feeds/spreadsheets/private/full/0Aoz...mcmc");
SpreadsheetFeed feed = _service.getFeed(feedUrl, SpreadsheetFeed.class);
_entry = feed.getEntries().get(0);
它給了我以下異常:
Exception in thread "main" com.google.gdata.util.ParseException: [Line 1, Column 165]
Invalid root element, expected (namespace uri:local name) of (http://www.w3.org/2005/Atom:feed),
found (http://www.w3.org/2005/Atom:entry
異常並沒有真正很多意義。我想它希望標籤成爲根,但它變得越來越重要。如果我轉到我用於feedUrl
的URL,那麼我將獲得我想要的XML文檔(包含名稱和我所瞄準的所有文檔)。我沒有看到我在這裏做錯了什麼,也找不到能夠幫助我的網上任何東西。
有人看到我在做什麼錯了嗎?
感謝