分享情況:
可以從google doc api上面得到api的使用範例
https://developers.google.com/google-apps/spreadsheets/?hl=zh-Hant#working_with_list-based_feeds
但能無法看出相關的get funtion取到的東西的定義為何,
for (ListEntry row : listFeed.getEntries()) {
// Print the first column's cell value
s_temp_ret = s_temp_ret +"\n"+ row.getTitle().getPlainText() ;
//System.out.print(row.getTitle().getPlainText() + "\t");
// Iterate over the remaining columns, and print each cell value
for (String tag : row.getCustomElements().getTags()) {
s_temp_ret =s_temp_ret + "\n-"+ row.getCustomElements().getValue(tag) ;
// System.out.print(row.getCustomElements().getValue(tag) + "\t");
}
//System.out.println();
}
左邊為我自己檔案的內容,右邊為打印出來的測試結果...