【发布时间】:2016-01-31 14:56:55
【问题描述】:
我在使用 Google Drive API 时遇到了一些麻烦。 我正在尝试使用 Java 应用从我自己的 Google Drive 下载电子表格。
根据 Google 的文档 (https://developers.google.com/drive/v3/web/manage-downloads) 可以使用“text/csv”参数以 CSV 格式下载电子表格。我的问题是,当我尝试以 CSV 格式下载我的文件时,我遇到了一个错误,但它以其他格式工作。
我得到的错误是:
Exception in thread "main" com.google.api.client.googleapis.json.GoogleJsonResponseException: 500 Internal Server Error
{
"code" : 500,
"errors" : [ {
"domain" : "global",
"message" : "Internal Error",
"reason" : "internalError"
} ],
"message" : "Internal Error"
}
at com.google.api.client.googleapis.json.GoogleJsonResponseException.from(GoogleJsonResponseException.java:145)
at com.google.api.client.googleapis.services.json.AbstractGoogleJsonClientRequest.newExceptionOnError(AbstractGoogleJsonClientRequest.java:113)
at com.google.api.client.googleapis.services.json.AbstractGoogleJsonClientRequest.newExceptionOnError(AbstractGoogleJsonClientRequest.java:40)
at com.google.api.client.googleapis.services.AbstractGoogleClientRequest$1.interceptResponse(AbstractGoogleClientRequest.java:321)
at com.google.api.client.http.HttpRequest.execute(HttpRequest.java:1056)
at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.executeUnparsed(AbstractGoogleClientRequest.java:419)
at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.executeUnparsed(AbstractGoogleClientRequest.java:352)
at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.executeAndDownloadTo(AbstractGoogleClientRequest.java:541)
我的代码如下:
public static Drive getDriveService() throws IOException
{
Credential credential = authorize();
return new Drive.Builder(HTTP_TRANSPORT, JSON_FACTORY, credential).setApplicationName(APPLICATION_NAME).build();
}
public static void main(String[] args) throws IOException
{
// Build a new authorized API client service.
Drive service = getDriveService();
// Print the names and IDs for up to 10 files.
FileList result = service.files().list().setPageSize(10).setFields("nextPageToken, files(id, name)").execute();
List<File> files = result.getFiles();
if (files == null || files.size() == 0)
{
System.out.println("No files found.");
}
else
{
for (File file : files)
{
if (file.getName().equals(Settings.DRIVE_FILE_NAME))
{
System.out.printf("%s (%s)\n", file.getName(), file.getId());
String fileId = file.getId();
OutputStream outputStream = new ByteArrayOutputStream();
service.files().export(fileId, "text/csv").executeAndDownloadTo(outputStream);
System.out.println(outputStream);
}
}
}
}
我哪里做错了?
谢谢!
【问题讨论】:
-
尝试使用方法 executeMediaAndDownloadTo() 而不是 executeAndDownloadTo()
-
这是服务器端错误。您需要查看服务器日志以了解问题所在。
标签: java csv google-drive-api