開始使用 Google Data Java 用戶端程式庫

Google Data API 團隊 Stephanie Liu
2007 年 9 月
  1. 簡介
  2. 安裝依附元件
    1. Windows
    2. Mac OS X
    3. Linux
  3. 安裝 Google Data Client Library
  4. 執行範例
  5. 建構自己的應用程式
  6. 結語
  7. 附錄:設定環境變數

簡介

開始使用不熟悉的 API 開發作業並不容易,因此本文提供逐步操作說明,教您如何下載及安裝 Google Data API (簡稱「GData」) Java 用戶端程式庫。我會逐步說明如何取得所有依附元件,以及設定所需的環境變數。您很快就能混搭不同的 GData 服務!

使用 Eclipse 嗎?

請參閱「Coding in the Shade: Using Eclipse with Google Data APIs」一文。

安裝依附元件

GData Java 用戶端程式庫有下列外部依附元件。以下各節將說明如何在您慣用的作業系統 (或您在工作時使用的作業系統) 上安裝這些依附元件。

  • JDK (Java Development Kit) 1.5 以上版本
  • Apache Ant 1.7 以上版本
  • Sun 的 JavaMail API 1.4 以上版本中的 mail.jar
  • Sun 的 JavaBeansActivationFramework 中的 activation.jar。只有媒體專屬 API (包括 Document List Data API、Picasa Web Album API 和 YouTube Data API) 才需要這麼做。
  • Sun 的 Servlet API 2.3 以上版本中的 servlet.jar。只有在「sample.authsub」或「sample.gbase.recipe」套件中執行程式碼範例時,才需要這個檔案。

部分 .jar 依附元件僅適用於特定範例,但為避免建構錯誤,最好還是取得所有依附元件。選擇要使用的作業系統:WindowsMac OS XLinux

安裝 Google Data Client Library

  1. 前往 http://code.google.com/p/gdata-java-client/downloads/list
  2. 下載最新版用戶端程式庫 (gdata-src.java-1.x.x.java.zip) 和範例 (gdata-samples.java-1.x.x.java.zip)。
  3. 將用戶端程式庫來源解壓縮到電腦上。
  4. 前往 gdata/java/build-src/build.properties 並開啟檔案。
  5. 編輯外部依附元件,指向本機電腦上 .jar 檔案的位置。
  6. 注意:在 Windows 上,請務必逸出反斜線。例如:

    servlet.jar=C:\\Program Files\\Apache Software Foundation\\Tomcat 6.0\\lib\\servlet-api.jar

執行範例

所有可用樣本都位於 gdata/java/sample 封存檔的 gdata-samples.java-1.x.x.java.zip 下方。gdata/java/build-samples/build.properties 檔案包含程式庫中所有樣本的輸入值。將 sample.credentials.usernamesample.credentials.password 設為有效的使用者名稱和密碼。我們可以使用 Ant 建構及執行範例。

開啟命令提示字元,變更為 gdata/java 目錄,然後輸入以下內容,測試是否已正確安裝所有項目:

ant -f build-samples.xml sample.calendar.run

你可能會收到一些資訊或警告訊息,但只要在結尾看到 BUILD SUCCESSFUL 訊息即可!如果沒有收到成功訊息,請參閱疑難排解部分

如要試用互動性更高的範例,請輸入:

ant -f build-samples.xml sample.spreadsheet.guidemo.run

如要瞭解如何執行特定範例,請前往 gdata/java/build-samples 並查看該範例的建構檔案。尋找「samples run」部分。

疑難排解

如果建構作業失敗,並顯示類似下列內容的錯誤訊息:

BUILD FAILED
Target 'core.sample.core.util.build' does not exist in this project. It is used from target 'sample.calendar.build'.

Total time: 0 seconds

或類似的錯誤訊息,指出專案缺少重要檔案,則可能是因為您執行的 Ant 版本較舊。輸入 ant -version,確認您執行的是 1.7 以上版本。請參閱上方的依附元件操作說明,取得最新版 Ant。

建構自己的應用程式

下一個問題是,如何建構自己的應用程式。我將使用 Calendar 服務,逐步說明「Hello, World!」等效程式,展示基本功能。如需更多詳細資訊,請參閱 Java 用戶端程式庫的開發人員指南,以及個別產品的開發人員指南

建立名為 CalendarTest.java 的檔案。首先,請加入下列匯入陳述式。

import com.google.gdata.client.*;
import com.google.gdata.client.calendar.*;
import com.google.gdata.data.*;
import com.google.gdata.data.acl.*;
import com.google.gdata.data.calendar.*;
import com.google.gdata.data.extensions.*;
import com.google.gdata.util.*;

import java.net.*;
import java.io.*;

import sample.util.*;

以下是整個程式 (不含任何例外狀況處理)。

public class CalendarTest {

    public static void main(String[] args) {
        CalendarService myService = new CalendarService("exampleCo-exampleApp-1.0");
        myService.setUserCredentials("root@gmail.com", "pa$$word");

        URL feedUrl = new URL("http://www.google.com/calendar/feeds/default/allcalendars/full");
        CalendarFeed resultFeed = myService.getFeed(feedUrl, CalendarFeed.class);

        System.out.println("Your calendars:");
        System.out.println();

        for (int i = 0; i < resultFeed.getEntries().size(); i++) {
          CalendarEntry entry = resultFeed.getEntries().get(i);
          System.out.println("\t" + entry.getTitle().getPlainText());
        }

    }
}

This little program will request all the calendars you own and display all the titles. It's a little longer than the canonical "Hello, World!" example, but it's very simple once we break it down. The first couple of lines creates a service object and sets the user credentials.

CalendarService myService = new CalendarService("exampleCo-exampleApp-1.0");
myService.setUserCredentials("root@gmail.com", "pa$$word");

接著,系統會設定資源的網址。在這種情況下,您可以在這裡要求已驗證使用者的所有日曆清單。

URL feedUrl = new URL("http://www.google.com/calendar/feeds/default/allcalendars/full");

以下這行會在網址上執行實際的 GET 指令,並將產生的動態消息放入整齊的物件中。

CalendarFeed resultFeed = myService.getFeed(feedUrl, CalendarFeed.class);

下方的 for 迴圈會逐一查看每個項目,並列印標題。請注意,標題會儲存為 TextConstruct,因此需要額外呼叫函式才能取得純文字。

for (int i = 0; i < resultFeed.getEntries().size(); i++) {
    CalendarEntry entry = resultFeed.getEntries().get(i);
    System.out.println("\t" + entry.getTitle().getPlainText());
}

以上是基本概念,接下來我們來看看其他常見事項。下列程式碼片段說明如何建立及插入物件。以本例來說,這會是新的日曆活動項目。

URL postURL = new URL("http://www.google.com/calendar/feeds/root@gmail.com/private/full");
CalendarEventEntry myEvent = new CalendarEventEntry();

//Set the title and description
myEvent.setTitle(new PlainTextConstruct("Pi Day Party"));
myEvent.setContent(new PlainTextConstruct("I am throwing a Pi Day Party!"));

//Create DateTime events and create a When object to hold them, then add
//the When event to the event
DateTime startTime = DateTime.parseDateTime("2007-03-14T15:00:00-08:00");
DateTime endTime = DateTime.parseDateTime("2007-03-14T17:00:00-08:00");
When eventTimes = new When();
eventTimes.setStartTime(startTime);
eventTimes.setEndTime(endTime);
myEvent.addTime(eventTimes);

// POST the request and receive the response:
CalendarEventEntry insertedEntry = myService.insert(postURL, myEvent);

另一項常見作業是建構查詢。

//Create a new query object and set the parameters
Query myQuery = new Query(feedURL);
myQuery.setFullTextQuery("Pi");

//Send the request with the built query URL
CalendarEventFeed myResultsFeed = myService.query(myQuery, CalendarEventFeed.class);

//Take the first match and print the title
if (myResultsFeed.getEntries().size() > 0) {
    CalendarEventEntry firstMatchEntry = new CalendarEventEntry();
    myResultsFeed.getEntries().get(0);
    System.out.println(firstMatchEntry.getTitle().getPlainText());
}

偵錯時,另一項實用作業是傾印原始 XML。您可以使用程式庫中的實用工具執行這項操作。請確認已匯入 samples.util.*。然後傾印動態消息或項目。

CommonUtils.dump(resultFeed, System.out);

如需更深入的偵錯工具,請參閱「Debugging Google Data API Clients: Exploring Traffic from Within your Program」一文,瞭解如何從用戶端程式庫中啟用記錄功能。

這樣您就能瞭解使用用戶端程式庫建構應用程式的感覺。如需更多詳細資訊,請參閱結論部分,瞭解各項 Google Data API 適用的開發人員指南。

結論

希望您現在已能使用 GData Java 用戶端程式庫建構及執行應用程式!我沒有介紹任何可用的熱門 IDE,但您不妨瞭解 EclipseNetBeans 等熱門工具。以下提供幾項額外的實用連結:

如果您在使用 Java 用戶端程式庫時遇到任何 API 相關問題,請在 API 專屬論壇中發布貼文,讓我們瞭解情況。