以下範例說明如何擷取記事及其附件:
REST
使用附件下載名稱和 alt=media 網址參數呼叫 media.download()。alt=media 網址參數會告知伺服器,目前要求下載內容。
如要取得附件名稱,請先擷取記事。
Java
/**
* Gets and downloads the attachment of a note.
*
* @param note The note whose attachment will be downloaded.
* @throws IOException
*/
private void getNoteAttachment(Note note) throws IOException {
// First call is to get the attachment resources on the note.
List<Attachment> attachments =
keepService.notes().get(note.getName()).execute().getAttachments();
if (!attachments.isEmpty()) {
Attachment attachment = attachments.get(0);
String mimeType = attachment.getMimeType().get(0);
// Make a second call to download the attachment with the specified
// mimeType.
OutputStream outputStream =
new FileOutputStream("attachmentFile." + mimeType.split("/")[1]);
keepService
.media()
.download(attachment.getName())
.setMimeType(mimeType)
.executeMediaAndDownloadTo(outputStream);
}
}