java - Google 表格 API 错误

标签 java api oauth google-sheets

一直遵循 Google 网站上的指南。我的 OAuth key 已正确设置,但无法让此单元格提取代码在 Java 中工作。

错误消息是:

线程“main”java.lang.Error中出现异常: Unresolved 编译问题: 类型不匹配:无法从元素类型 SpreadsheetEntry 转换为 CellEntry

at com.wow.trading.WOWTrading.MySpreadsheetIntegration.main(MySpreadsheetIntegration.java:51)

代码与 Google 网站完全相同,并且 JAR 不丢失。

package com.wow.trading.WOWTrading;
import com.google.gdata.client.spreadsheet.*;
import com.google.gdata.data.spreadsheet.*;
import com.google.gdata.util.*;

import java.io.IOException;
import java.net.*;
import java.util.*;

public class MySpreadsheetIntegration {
  public static void main(String[] args)
      throws AuthenticationException, MalformedURLException, IOException, ServiceException {

    SpreadsheetService service =
        new SpreadsheetService("MySpreadsheetIntegration-v1");

    // TODO: Authorize the service object for a specific user (see other     sections)

    // Define the URL to request.  This should never change.
    URL SPREADSHEET_FEED_URL = new URL(
        "https://spreadsheets.google.com/feeds/spreadsheets/private/full");

    // Make a request to the API and get all spreadsheets.
    SpreadsheetFeed feed = service.getFeed(SPREADSHEET_FEED_URL,
        SpreadsheetFeed.class);
    List<SpreadsheetEntry> spreadsheets = feed.getEntries();

    if (spreadsheets.size() == 0) {
      // TODO: There were no spreadsheets, act accordingly.
    }

    // TODO: Choose a spreadsheet more intelligently based on your
    // app's needs.
    SpreadsheetEntry spreadsheet = spreadsheets.get(0);
    System.out.println(spreadsheet.getTitle().getPlainText());

    // Get the first worksheet of the first spreadsheet.
    // TODO: Choose a worksheet more intelligently based on your
    // app's needs.
    WorksheetFeed worksheetFeed = service.getFeed(
        spreadsheet.getWorksheetFeedUrl(), WorksheetFeed.class);
    List<WorksheetEntry> worksheets = worksheetFeed.getEntries();
    WorksheetEntry worksheet = worksheets.get(0);

    // Fetch the cell feed of the worksheet.
    URL cellFeedUrl = worksheet.getCellFeedUrl();
    CellFeed cellFeed = service.getFeed(cellFeedUrl, CellFeed.class);

    // Iterate through each cell, updating its value if necessary.
    // TODO: Update cell values more intelligently.
    **for (CellEntry cell : feed.getEntries()) {**
      if (cell.getTitle().getPlainText().equals("A1")) {
        cell.changeInputValueLocal("200");
        cell.update();
      } else if (cell.getTitle().getPlainText().equals("B1")) {
        cell.changeInputValueLocal("=SUM(A1, 200)");
        cell.update();
      }
    }
  }
}

最佳答案

我从未使用过 Google Spreadsheets API,但您突出显示的行有一个错误,我对此非常清楚。

您的变量feed是一个SpreadsheetFeed。由于您有许多电子表格、工作表和单元格的“feed”对象,因此将 feed 重命名为 spreadsheetFeed 可能是一个好主意,这样就可以清楚是哪种类型饲料是这样的。您已经使用工作表 (worksheetFeed) 和单元格 (cellFeed) 执行此操作,那么为什么不使用电子表格呢?

如果你这样做,上面突出显示的代码行就会变成

for (CellEntry cell : spreadsheetFeed.getEntries()) {

希望现在错误已经很明显了。我猜你想要

for (CellEntry cell : cellFeed.getEntries()) {

相反。

关于java - Google 表格 API 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38152729/

相关文章:

ios - 与服务器的安全通信 - 解决方案

java - 在 Spring Boot 中配置 0-legged OAuth 1.0

java - 计算2字节数组的欧氏距离java

java - 从数据库加载显示 Jlist 中的值

java - 比较 Array Java 中的股票值(value)

Java Servlet 抛出异常

javascript - 更改输入值时如何重置表单的输入值?

api - 什么是 OAuth,它如何保护 REST API 调用?

api - PayPal + RESTful API + WebHooks + 自签名证书

java - Spring OAuth2 token 请求中的 StackOverflowError