קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
בדוגמה הבאה מוסבר איך לאחזר הערה ואת הקובץ המצורף שלה:
REST
קוראים לפונקציה media.download() עם השם של קובץ ההורדה של הקובץ המצורף ופרמטר כתובת ה-URL alt=media. הפרמטר של כתובת ה-URL alt=media מאפשר לשרת לדעת שהתבצעה בקשה להורדת תוכן.
/**
* 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);
// A second call is required in order 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);
}
}
[[["התוכן קל להבנה","easyToUnderstand","thumb-up"],["התוכן עזר לי לפתור בעיה","solvedMyProblem","thumb-up"],["סיבה אחרת","otherUp","thumb-up"]],[["חסרים לי מידע או פרטים","missingTheInformationINeed","thumb-down"],["התוכן מורכב מדי או עם יותר מדי שלבים","tooComplicatedTooManySteps","thumb-down"],["התוכן לא עדכני","outOfDate","thumb-down"],["בעיה בתרגום","translationIssue","thumb-down"],["בעיה בדוגמאות/בקוד","samplesCodeIssue","thumb-down"],["סיבה אחרת","otherDown","thumb-down"]],["עדכון אחרון: 2024-12-01 (שעון UTC)."],[[["Retrieve a note's attachment by calling `media.download()` with the attachment's name and the `alt=media` URL parameter, which signals a content download request."],["To obtain the attachment's name, you need to first retrieve the note itself using the `notes().get()` method."],["For Java, you need to make two calls: one to get the attachment resources and another to download the attachment with the specified MIME type using `media().download()`."]]],[]]