我正在上传一个 Word 文档:
com.google.api.services.drive.model.File body = new com.google.api.services.drive.model.File();
body.setTitle(file.getName());
body.setMimeType(mimeType);
FileContent mediaContent = new FileContent(mimeType, file);
com.google.api.services.drive.model.File uploadedFile = service.files()
.insert(body, mediaContent).execute();
String downloadUrl = file.getExportLinks().get(mimeType);
上传顺利。但是,对 file.getExportLinks() 的调用返回 null,因此,这一行是一个空指针。有人知道为什么 getExportLinks() 返回 null 吗?