/** * Creates a new text note. * * @throws IOException * @return The newly created text note. */privateNotecreateTextNote(Stringtitle,StringtextContent)throwsIOException{SectionnoteBody=newSection().setText(newTextContent().setText(textContent));NotenewNote=newNote().setTitle(title).setBody(noteBody);returnkeepService.notes().create(newNote).execute();}
একটি তালিকা নোট তৈরি করুন
নিম্নলিখিত নমুনা দেখায় কিভাবে একটি তালিকা নোট তৈরি করতে হয়:
/** * Creates a new list note. * * @throws IOException * @return The newly created list note. */privateNotecreateListNote()throwsIOException{// Create a checked list item.ListItemcheckedListItem=newListItem().setText(newTextContent().setText("Send meeting invites")).setChecked(true);// Create a list item with two children.ListItemuncheckedListItemWithChildren=newListItem().setText(newTextContent().setText("Prepare the presentation")).setChecked(false).setChildListItems(Arrays.asList(newListItem().setText(newTextContent().setText("Review metrics")),newListItem().setText(newTextContent().setText("Analyze sales projections")),newListItem().setText(newTextContent().setText("Share with leads"))));// Creates an unchecked list item.ListItemuncheckedListItem=newListItem().setText(newTextContent().setText("Send summary email")).setChecked(true);NotenewNote=newNote().setTitle("Marketing review meeting").setBody(newSection().setList(newListContent().setListItems(Arrays.asList(checkedListItem,uncheckedListItemWithChildren,uncheckedListItem))));returnkeepService.notes().create(newNote).execute();}
[[["সহজে বোঝা যায়","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"]],["2025-03-11 UTC-তে শেষবার আপডেট করা হয়েছে।"],[],[],null,["# Create notes\n\nThe Google Keep API allows you to create two types of notes: a text note and a list\nnote. This document shows how to create each type.\n\nCreate a text note\n------------------\n\nThe following sample shows how to create a text note: \n\n### REST\n\nCall [notes.create](/workspace/keep/api/reference/rest/v1/notes/create) with a\n[Note](/workspace/keep/api/reference/rest/v1/notes#Note) resource. Place the\n[TextContent](/workspace/keep/api/reference/rest/v1/notes#TextContent) in the\n[Section](/workspace/keep/api/reference/rest/v1/notes#Section) of the note.\n\n### Java\n\n /**\n * Creates a new text note.\n *\n * @throws IOException\n * @return The newly created text note.\n */\n private Note createTextNote(String title, String textContent) throws IOException {\n Section noteBody = new Section().setText(new TextContent().setText(textContent));\n Note newNote = new Note().setTitle(title).setBody(noteBody);\n\n return keepService.notes().create(newNote).execute();\n }\n\nCreate a list note\n------------------\n\nThe following sample shows how to create a list note: \n\n### REST\n\nCall [notes.create](/workspace/keep/api/reference/rest/v1/notes/list) with a\n[Note](/workspace/keep/api/reference/rest/v1/notes#Note) resource. Place the\n[ListContent](/workspace/keep/api/reference/rest/v1/notes#ListContent) in the\n[Section](/workspace/keep/api/reference/rest/v1/notes#Section) of the note.\n\n### Java\n\n /**\n * Creates a new list note.\n *\n * @throws IOException\n * @return The newly created list note.\n */\n private Note createListNote() throws IOException {\n // Create a checked list item.\n ListItem checkedListItem =\n new ListItem().setText(new TextContent().setText(\"Send meeting invites\")).setChecked(true);\n\n // Create a list item with two children.\n ListItem uncheckedListItemWithChildren =\n new ListItem()\n .setText(new TextContent().setText(\"Prepare the presentation\"))\n .setChecked(false)\n .setChildListItems(\n Arrays.asList(\n new ListItem().setText(new TextContent().setText(\"Review metrics\")),\n new ListItem().setText(new TextContent().setText(\"Analyze sales projections\")),\n new ListItem().setText(new TextContent().setText(\"Share with leads\"))));\n\n // Creates an unchecked list item.\n ListItem uncheckedListItem =\n new ListItem().setText(new TextContent().setText(\"Send summary email\")).setChecked(true);\n\n Note newNote =\n new Note()\n .setTitle(\"Marketing review meeting\")\n .setBody(\n new Section()\n .setList(\n new ListContent()\n .setListItems(\n Arrays.asList(\n checkedListItem,\n uncheckedListItemWithChildren,\n uncheckedListItem))));\n\n return keepService.notes().create(newNote).execute();\n }"]]