{"id":37209,"date":"2024-11-01T09:55:46","date_gmt":"2024-11-01T09:55:46","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37209"},"modified":"2024-11-01T11:36:12","modified_gmt":"2024-11-01T11:36:12","slug":"java-android-app-development-course-introduction-to-java-language","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37209\/","title":{"rendered":"Java Android App Development Course, Introduction to Java Language"},"content":{"rendered":"<p><body><\/p>\n<p>In Android app development, Java is one of the most important programming languages. While Google has been developing the Android platform, Java has established itself as the core language. Understanding the advantages and basic concepts of Java can greatly assist in Android app development. This course will start with the fundamental concepts of the Java language and progressively explain the basics to advanced topics for Android app development.<\/p>\n<h2>1. What is Java?<\/h2>\n<p>Java is a general-purpose programming language that was developed by Sun Microsystems (now Oracle) in 1995. It is an object-oriented programming (OOP) language that makes the code more structured and reusable. Java has the following key features:<\/p>\n<ul>\n<li>Platform Independence: Once written, the code can run on any platform through the JVM (Java Virtual Machine).<\/li>\n<li>Object-Oriented: It allows for structured management of data and methods using classes and objects.<\/li>\n<li>Robust Memory Management: Java efficiently performs memory management with automatic garbage collection.<\/li>\n<li>Diverse Libraries: Java provides a wide range of standard libraries and APIs for developers to use conveniently.<\/li>\n<li>Multithreading Support: It facilitates easy management of multiple threads, making concurrent programming easier.<\/li>\n<\/ul>\n<h2>2. Basic Syntax of Java<\/h2>\n<p>The syntax of Java is simple and intuitive. Let&#8217;s take a look at the basic syntax of Java through example code.<\/p>\n<h3>2.1 Hello World Example<\/h3>\n<pre>\n<code>\npublic class HelloWorld {\n    public static void main(String[] args) {\n        System.out.println(\"Hello, World!\");\n    }\n}\n<\/code>\n    <\/pre>\n<p>The above code shows the basic structure of Java. It defines a class, and the program starts through the main method. The System.out.println() method is responsible for printing messages to the console.<\/p>\n<h3>2.2 Variables and Data Types<\/h3>\n<p>Java has primitive data types and reference data types. Primitive data types include int, float, double, char, boolean, etc., while reference data types represent complex data structures like classes and arrays.<\/p>\n<pre>\n<code>\npublic class VariableExample {\n    public static void main(String[] args) {\n        int age = 25;\n        double height = 175.5;\n        char initial = 'A';\n        boolean isStudent = true;\n\n        System.out.println(\"Age: \" + age);\n        System.out.println(\"Height: \" + height);\n        System.out.println(\"Initial: \" + initial);\n        System.out.println(\"Is a student: \" + isStudent);\n    }\n}\n<\/code>\n    <\/pre>\n<h3>2.3 Operators<\/h3>\n<p>Java provides various operators to process data.<\/p>\n<ul>\n<li>Arithmetic Operators: +, -, *, \/, %<\/li>\n<li>Comparison Operators: ==, !=, >, <, >=, <=<\/li>\n<li>Logical Operators: &#038;&#038;, ||, !<\/li>\n<\/ul>\n<pre>\n<code>\npublic class OperatorExample {\n    public static void main(String[] args) {\n        int a = 10;\n        int b = 20;\n        boolean result;\n\n        result = (a < b) &#038;&#038; (b > 15);\n        System.out.println(\"Result: \" + result);\n    }\n}\n<\/code>\n    <\/pre>\n<h3>2.4 Control Statements<\/h3>\n<p>Control statements are used to control the flow of the program. Java includes conditional statements (if, switch) and loops (for, while, do-while).<\/p>\n<pre>\n<code>\npublic class ControlFlowExample {\n    public static void main(String[] args) {\n        int num = 5;\n\n        if (num > 0) {\n            System.out.println(num + \" is a positive number.\");\n        } else {\n            System.out.println(num + \" is a negative number.\");\n        }\n\n        for (int i = 1; i <= 5; i++) {\n            System.out.println(\"Iteration: \" + i);\n        }\n    }\n}\n<\/code>\n    <\/pre>\n<h2>3. Object-Oriented Programming (OOP)<\/h2>\n<p>Object-oriented programming is a paradigm that solves problems from the perspective of objects. Java supports the four main characteristics of OOP: encapsulation, inheritance, polymorphism, and abstraction.<\/p>\n<h3>3.1 Classes and Objects<\/h3>\n<p>A class is a blueprint that defines an object. An object is an instance created based on a class.<\/p>\n<pre>\n<code>\nclass Dog {\n    String name;\n    int age;\n\n    void bark() {\n        System.out.println(name + \" barks.\");\n    }\n}\n\npublic class Main {\n    public static void main(String[] args) {\n        Dog dog = new Dog();\n        dog.name = \"Bongchi\";\n        dog.age = 3;\n        dog.bark();\n    }\n}\n<\/code>\n    <\/pre>\n<h3>3.2 Inheritance<\/h3>\n<p>Inheritance is a feature that allows a child class to inherit properties and methods from an existing class (parent class).<\/p>\n<pre>\n<code>\nclass Animal {\n    void eat() {\n        System.out.println(\"Eating.\");\n    }\n}\n\nclass Cat extends Animal {\n    void meow() {\n        System.out.println(\"Meow!\");\n    }\n}\n\npublic class Main {\n    public static void main(String[] args) {\n        Cat cat = new Cat();\n        cat.eat();\n        cat.meow();\n    }\n}\n<\/code>\n    <\/pre>\n<h3>3.3 Polymorphism<\/h3>\n<p>Polymorphism is the ability to use different implementations through the same interface.<\/p>\n<pre>\n<code>\nclass Bird {\n    void fly() {\n        System.out.println(\"The bird is flying.\");\n    }\n}\n\nclass Ostrich extends Bird {\n    void fly() {\n        System.out.println(\"The ostrich cannot fly.\");\n    }\n}\n\npublic class Main {\n    public static void main(String[] args) {\n        Bird myBird = new Ostrich();\n        myBird.fly();\n    }\n}\n<\/code>\n    <\/pre>\n<h3>3.4 Abstract Classes and Interfaces<\/h3>\n<p>An abstract class is an incomplete class, while an interface is a collection of methods that a class must implement.<\/p>\n<pre>\n<code>\nabstract class Shape {\n    abstract void draw();\n}\n\nclass Circle extends Shape {\n    void draw() {\n        System.out.println(\"Drawing a circle\");\n    }\n}\n\npublic class Main {\n    public static void main(String[] args) {\n        Shape shape = new Circle();\n        shape.draw();\n    }\n}\n<\/code>\n    <\/pre>\n<h2>4. Android App Development with Java<\/h2>\n<p>Now, let's explore how to develop Android apps using Java. We will install Android Studio and create a simple app.<\/p>\n<h3>4.1 Setting Up the Android Development Environment<\/h3>\n<p>To develop Android apps, you need to install Android Studio. After installing Android Studio, create a new project.<\/p>\n<h3>4.2 Creating a Simple \"Hello World\" App<\/h3>\n<p>First, after creating a new project in Android Studio, take a look at the provided \"Hello World\" app.<\/p>\n<pre>\n<code>\npackage com.example.helloworld;\n\nimport android.os.Bundle;\nimport android.widget.TextView;\nimport androidx.appcompat.app.AppCompatActivity;\n\npublic class MainActivity extends AppCompatActivity {\n    @Override\n    protected void onCreate(Bundle savedInstanceState) {\n        super.onCreate(savedInstanceState);\n        setContentView(R.layout.activity_main);\n\n        TextView textView = findViewById(R.id.text_view);\n        textView.setText(\"Hello, Android!\");\n    }\n}\n<\/code>\n    <\/pre>\n<p>The above code displays the text \"Hello, Android!\" in the main activity.<\/p>\n<h3>4.3 Setting Up Layouts<\/h3>\n<p>The UI of Android is primarily defined in XML. Below is an example of a basic layout file.<\/p>\n<pre>\n<code>\n<linearlayout android:layout_height=\"match_parent\" android:layout_width=\"match_parent\" android:orientation=\"vertical\" xmlns:android=\"http:\/\/schemas.android.com\/apk\/res\/android\">\n\n    <textview android:id=\"@+id\/text_view\" android:layout_height=\"wrap_content\" android:layout_width=\"wrap_content\" android:textsize=\"24sp\"><\/textview>\n<\/linearlayout>\n<\/code>\n    <\/pre>\n<h2>5. Conclusion<\/h2>\n<p>In this course, we covered various topics from the basic concepts of the Java language to object-oriented programming and Android app development. Java is a very important language for Android development, and a thorough understanding and practice are required. Continue studying and practicing for a deeper understanding of Java and Android. In the next course, we will cover various functionality implementations for Android apps.<\/p>\n<h2>6. References<\/h2>\n<ul>\n<li>Java Programming Language: https:\/\/www.oracle.com\/java\/technologies\/javase\/javase-jdk8-downloads.html<\/li>\n<li>Android Developer Site: https:\/\/developer.android.com\/<\/li>\n<li>Principles of Object-Oriented Programming: https:\/\/www.tutorialspoint.com\/java\/java_object_oriented.htm<\/li>\n<\/ul>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In Android app development, Java is one of the most important programming languages. While Google has been developing the Android platform, Java has established itself as the core language. Understanding the advantages and basic concepts of Java can greatly assist in Android app development. This course will start with the fundamental concepts of the Java &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37209\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Java Android App Development Course, Introduction to Java Language&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[137],"tags":[],"class_list":["post-37209","post","type-post","status-publish","format-standard","hentry","category-java-android-app-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Java Android App Development Course, Introduction to Java Language - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/37209\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Java Android App Development Course, Introduction to Java Language - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"In Android app development, Java is one of the most important programming languages. While Google has been developing the Android platform, Java has established itself as the core language. Understanding the advantages and basic concepts of Java can greatly assist in Android app development. This course will start with the fundamental concepts of the Java &hellip; \ub354 \ubcf4\uae30 &quot;Java Android App Development Course, Introduction to Java Language&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37209\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:55:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:36:12+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"2\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/37209\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37209\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Java Android App Development Course, Introduction to Java Language\",\"datePublished\":\"2024-11-01T09:55:46+00:00\",\"dateModified\":\"2024-11-01T11:36:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37209\/\"},\"wordCount\":300,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Java Android app development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37209\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37209\/\",\"name\":\"Java Android App Development Course, Introduction to Java Language - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:55:46+00:00\",\"dateModified\":\"2024-11-01T11:36:12+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37209\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37209\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37209\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java Android App Development Course, Introduction to Java Language\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Java Android App Development Course, Introduction to Java Language - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/atmokpo.com\/w\/37209\/","og_locale":"ko_KR","og_type":"article","og_title":"Java Android App Development Course, Introduction to Java Language - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"In Android app development, Java is one of the most important programming languages. While Google has been developing the Android platform, Java has established itself as the core language. Understanding the advantages and basic concepts of Java can greatly assist in Android app development. This course will start with the fundamental concepts of the Java &hellip; \ub354 \ubcf4\uae30 \"Java Android App Development Course, Introduction to Java Language\"","og_url":"https:\/\/atmokpo.com\/w\/37209\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:55:46+00:00","article_modified_time":"2024-11-01T11:36:12+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"2\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/37209\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37209\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Java Android App Development Course, Introduction to Java Language","datePublished":"2024-11-01T09:55:46+00:00","dateModified":"2024-11-01T11:36:12+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37209\/"},"wordCount":300,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Java Android app development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37209\/","url":"https:\/\/atmokpo.com\/w\/37209\/","name":"Java Android App Development Course, Introduction to Java Language - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:55:46+00:00","dateModified":"2024-11-01T11:36:12+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37209\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37209\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37209\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Java Android App Development Course, Introduction to Java Language"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37209","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=37209"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37209\/revisions"}],"predecessor-version":[{"id":37210,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37209\/revisions\/37210"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37209"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37209"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37209"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}