Не удалось найти документ, загруженный с Google Drive API, где он находится? - PullRequest
0 голосов
/ 14 мая 2018
 OutputStream outputStream = new ByteArrayOutputStream();
service.files().export(fileId, "application/vnd.openxmlformats-officedocument.wordprocessingml.document")
.executeMediaAndDownloadTo(outputStream);

1 Ответ

0 голосов
/ 14 мая 2018

Использовать другой OutputStream

File file = new java.io.File("foo.docx");
try (FileOutputStream outputStream = new FileOutputStream(file)) {
    // if file doesn't exists, then create it
    if (!file.exists()) {
        file.createNewFile();
    }
    service.files()
        .export(fileId, "application/vnd.openxmlformats-officedocument.wordprocessingml.document")
        .executeMediaAndDownloadTo(outputStream):
} 
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...