从刚刚检索到的ID中获取Google文档

时间:2017-09-15 12:40:34

标签: javascript java jsf google-drive-api ajax4jsf

我正在开发一个Java-JSF Web应用程序,我在其中显示一个弹出窗口,以便让用户从Google Drive中选择一个文档进行下载。

为此,我有一些js代码:

<script src="filepicker.js"></script>
<script>
    function initPicker() {
        var picker = new FilePicker({
            apiKey: 'MY_API_KEY',
            clientId:  my_client_id,
            buttonEl: document.getElementById('pick'),
            onSelect : function(file) {
                        if (file.id) {
                            sendLinkToBean(file.id);
                        } else {
                            alert('Unable to download file.');
                        }
                    }
                });
    }
</script>

<a4j:jsFunction name="sendLinkToBean" action="#{gPPersonFormBean.downloadFile()}">
    <a4j:param name="param1" assignTo="#{gPPersonFormBean.fileId}"/> 
</a4j:jsFunction>

file.id到达Bean,我试图获取它,如G.Drive的API所示:

public void downloadFile(){
    try {
        Drive driveService = getDriveService();
        OutputStream outputStream = new ByteArrayOutputStream();
        driveService.files().get(fileId) .executeMediaAndDownloadTo(outputStream);
    } catch (IOException e) {
        String mess = "downloadFile(): " 
                + (e.getMessage()!=null?". "+e.getMessage():"")
                + (e.getCause()!=null?". "+e.getCause():"");
        logger.error(mess);
    }
}

但是我得到了FileNotFoundException:

com.google.api.client.http.HttpResponseException: 404 Not Found
{
 "error": {"theID"
  "errors": [
   {
    "domain": "global",
    "reason": "notFound",
    "message": "File not found: 1tvnGWDCse4TFQwIvqEDTlvv2cebfs0C2JBtjTP5A42I.",
    "locationType": "parameter",
    "location": "fileId"
   }
  ],
  "code": 404,
  "message": "File not found: theID."
 }
}

有谁知道为什么会这样? 提前谢谢。

编辑:我刚刚将收到的ID与Google提供的ID与文件的链接进行了比较,它们完全相同。

编辑2:如果我driveService.files().list();,则会返回一个空列表。

2 个答案:

答案 0 :(得分:1)

如果您想下载Google文档,请使用files.export。你能反映下面的脚本并尝试一下吗?

String fileId = "## file ID ##";
OutputStream outputStream = new ByteArrayOutputStream();
driveService.files().export(fileId, "application/pdf")
    .executeMediaAndDownloadTo(outputStream);
  • 此示例脚本和详细信息为here

如果我误解了你的问题,我很抱歉。

答案 1 :(得分:0)

正如Tanaike所说我必须使用export而不是get而且还执行executeDndDownloadTo而不是executeMediaAndDownloadTo

所以它有效:

String fileId = "## file ID ##";
OutputStream outputStream = new ByteArrayOutputStream();
driveService.files().export(fileId, "application/pdf")
    .executeAndDownloadTo(outputStream);