3

有没有办法从 Google Drive 上的文件中读取文本并将其存储在字符串中?该文件也可能包含图像。我正在研究 Google Drive SDK,但它们只允许我们下载整个文件。我该怎么做呢?

4

1 回答 1

2

来自Files.get()文档。

private static InputStream downloadFile(Drive service, File file) {
  if (file.getDownloadUrl() != null && file.getDownloadUrl().length() > 0) {
    try {
      HttpResponse resp =
          service.getRequestFactory().buildGetRequest(new GenericUrl(file.getDownloadUrl()))
              .execute();
      return resp.getContent();
    } catch (IOException e) {
      // An error occurred.
      e.printStackTrace();
      return null;
    }
  } else {
    // The file doesn't have any content stored on Drive.
    return null;
  }
}

您可以根据需要将 InputStream 转换为 String 或 File。

于 2013-07-27T06:04:46.313 回答