{"id":13589642,"url":"https://github.com/ayumax/EasyJsonParser","last_synced_at":"2025-04-08T09:33:38.543Z","repository":{"id":42378188,"uuid":"184866830","full_name":"ayumax/EasyJsonParser","owner":"ayumax","description":"json parse library for unreal engine","archived":false,"fork":false,"pushed_at":"2021-12-28T11:09:01.000Z","size":416,"stargazers_count":35,"open_issues_count":3,"forks_count":17,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-08-02T16:32:01.893Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://unrealengine.com/marketplace/ja/product/easyjsonparser","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ayumax.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-05-04T07:49:13.000Z","updated_at":"2024-07-21T10:30:11.000Z","dependencies_parsed_at":"2022-09-05T13:51:56.463Z","dependency_job_id":null,"html_url":"https://github.com/ayumax/EasyJsonParser","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayumax%2FEasyJsonParser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayumax%2FEasyJsonParser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayumax%2FEasyJsonParser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayumax%2FEasyJsonParser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ayumax","download_url":"https://codeload.github.com/ayumax/EasyJsonParser/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223314265,"owners_count":17125040,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T16:00:32.476Z","updated_at":"2024-11-06T09:31:18.191Z","avatar_url":"https://github.com/ayumax.png","language":"C++","funding_links":[],"categories":["Text Formatter/Parser","Game Development"],"sub_categories":["Unreal Engine: Resources"],"readme":"# EasyJsonParser\n![GALLERY0](https://user-images.githubusercontent.com/8191970/59560158-5931ed00-9048-11e9-9983-26220f3814f2.png)\n\n## UE4 Marketplace\n[https://unrealengine.com/marketplace/ja/slug/easyjsonparser](https://unrealengine.com/marketplace/ja/slug/easyjsonparser)\n\n## Description\nUsage and sample of EasyJsonParser released in the market place of UE4.\n\n\n\n# How to use\nJson string or Json file after loading, specify the access string and get the value.\n\n![GALLERY 1](https://user-images.githubusercontent.com/8191970/59552751-a15bfb80-8fc5-11e9-8da8-767b2734a4dd.png)\n\n\n# Specify Access String\nSpecify the path to the value you want to get by connecting dots.\n\n## Simple case\nThe access string for taking a \"prop\" value from the following simple Json is `prop`.\n\n```json\n{\n  \"prop\":\"abc\"\n}\n```\n\n\n## When it is a hierarchy of objects\nIf you have a hierarchy as shown below, connect with dots to create an access string.\n\nIn the following case, the access string is `obj.prop` because we want to take the` prop` property in the object `obj`.\n\n```json\n{\n  \"obj\":\n  {\n    \"prop\":\"abc\"\n  }\n}\n```\n\n## If the array is included\nIn the case of the following array, please specify which array element to use.\n\nFor example, if you want to take the second `prop`, it will be `obj[1].prop`.\n\nIf you want to take the first `prop`, it will be`obj[0].prop`.\n\n```json\n{\n  \"obj\":[\n  {\n    \"prop\":\"abc\"\n  },\n  {\n    \"prop\":\"def\"\n  }\n  ]\n}\n```\n\n## Get value by type\n\nThe following four functions are provided to obtain values ​​from Json:\n\n![pic](https://user-images.githubusercontent.com/8191970/59552810-758d4580-8fc6-11e9-8a5f-09527883e26c.png)\n\n+ ReadInt(int)\n+ ReadFloat(float)\n+ ReadString(string)\n+ ReadBool(bool)\n\n\nEnter the access string for \"AccessString\".\n\nEnter the default value for \"DefaultValue\". If the specified value does not exist in Json, a default value is returned.\n\n## Get object\n\nThere are also \"ReadObject\" and \"ReadObjects\" methods that get as objects instead of values.\n\nThis method can only retrieve object properties.\n\nReadObject gets one node object.\n\nReadObjects gets an array of multiple objects.\n\nAs shown below, you can use it to get an object in the middle of the hierarchy and then get the properties of that object.\n\n![pic](https://user-images.githubusercontent.com/8191970/59552834-bb4a0e00-8fc6-11e9-8f0a-58b0ccd421d6.png)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fayumax%2FEasyJsonParser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fayumax%2FEasyJsonParser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fayumax%2FEasyJsonParser/lists"}