/** Lists notes using different filtering and pagination options. */privatevoidlistNotes()throwsIOException{// Lists 3 notes that were created after a specified timestamp and that are not trashed. Results// are ordered by most recently modified first.ListNotesResponseresponse=keepService.notes().list().setFilter("create_time > \"2021-01-01T00:00:00Z\"").setFilter("-trashed").setPageSize(3).execute();System.out.println("List notes response: "+response);// Lists notes using a pagination token.ListNotesResponsefirstPageResponse=keepService.notes().list().setPageSize(1).execute();StringnextPageToken=firstPageResponse.getNextPageToken();for(inti=0;i < 5;i++){// Uses the page token that was returned by the previous page's next page token.ListNotesResponsepagedResponse=keepService.notes().list().setPageSize(1).setPageToken(nextPageToken).execute();System.out.println("Listing note:"+pagedResponse);nextPageToken=pagedResponse.getNextPageToken();}}
[[["เข้าใจง่าย","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-21 UTC"],[[["This code sample demonstrates how to retrieve a list of notes from Google Keep using the `notes.list()` method in REST and Java."],["The Java example shows how to filter notes based on creation time and trash status, limiting results to 3 and ordering them by modification time."],["It also illustrates using pagination to retrieve notes in batches of 1, iterating through 5 pages by leveraging the `nextPageToken` for continuous retrieval."]]],[]]