{"id":33056,"date":"2023-02-04T03:04:10","date_gmt":"2023-02-03T21:34:10","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-i-am-trying-to-parse-a-data-from-the-following-link\/"},"modified":"2023-02-04T03:04:10","modified_gmt":"2023-02-03T21:34:10","slug":"solved-i-am-trying-to-parse-a-data-from-the-following-link","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-i-am-trying-to-parse-a-data-from-the-following-link\/","title":{"rendered":"[Solved] I am trying to parse a data from the following link"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-40756955\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"40756955\" data-parentid=\"40630367\" data-score=\"0\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>Thank You Everyone for Helping out. But I found my answer from the search over the internet. Here I used VOLLEY to call the link. <\/p>\n<p><strong>JSON PARSER CLASS<\/strong><\/p>\n<pre><code> public class ParseJSON  {\n\n        public static String[] position1;\n        public static String[] team;\n        public static String[] points;\n\n        public static final String JSON_ARRAY = \"data\";\n\n        public static final String CHILD_ARRAY = \"standings\";\n\n        public static final String KEY_ID = \"position\";\n        public static final String KEY_NAME = \"team\";\n\n        private JSONObject users = null;\n        private JSONArray user2=null;\n        private JSONObject user3=null;\n\n        private String json;\n\n        public ParseJSON(String json){\n            this.json = json;\n        }\n        protected void parseJSON() {\n            JSONObject jsonObject = null;\n            try {\n                jsonObject = new JSONObject(json);\n                users = jsonObject.getJSONObject(JSON_ARRAY);\n                try {\n                    user2=users.getJSONArray(CHILD_ARRAY);\n                    position1 = new String[user2.length()];\n                    team = new String[user2.length()];\n                    points=new String[user2.length()];\n                    for (int i = 0; i &lt; user2.length(); i++) {\n\n                        JSONObject jo = user2.getJSONObject(i);\n                       try {\n                           user3=jo.getJSONObject(\"overall\");\n                           points[i] = user3.getString(\"points\");\n                           System.out.println(\"Message me: \"+points[i]);\n                       }catch (Exception e)\n                       {\n                           e.printStackTrace();\n                       }\n                        position1[i] = jo.getString(KEY_ID);\n                        team[i] = jo.getString(KEY_NAME);\n                        System.out.println(\"Message me: \"+position1[i]);\n                        System.out.println(\"Message me: \"+team[i]);\n\n\n                    }\n                }catch (Exception e)\n                {\n                    e.printStackTrace();\n                }\n             } catch (JSONException e) {\n                e.printStackTrace();\n            }\n        }\n    }\n<\/code><\/pre>\n<p><strong>Main Activity Class<\/strong><\/p>\n<pre><code> public class MainActivity extends AppCompatActivity implements View.OnClickListener {\n\n\n        public static final String JSON_URL=\"http:\/\/soccer.sportsopendata.net\/v1\/leagues\/premier-league\/seasons\/16-17\/standings\";\n        private Button buttonGet;\n        private ListView listView;\n\n        @Override\n        protected void onCreate(Bundle savedInstanceState) {\n            super.onCreate(savedInstanceState);\n            setContentView(R.layout.activity_main);\n            buttonGet = (Button) findViewById(R.id.buttonGet);\n            buttonGet.setOnClickListener(this);\n            listView = (ListView) findViewById(R.id.listView);\n        }\n\n        @Override\n        public void onClick(View v) {\n            sendRequest();\n        }\n        private void sendRequest() {\n            final StringRequest stringRequest = new StringRequest(JSON_URL,\n                    new Response.Listener&lt;String&gt;() {\n                        @Override\n                        public void onResponse(String response) {\n                            showJSON(response);\n\n                        }\n                    },\n                    new Response.ErrorListener() {\n                        @Override\n                        public void onErrorResponse(VolleyError error) {\n                            Toast.makeText(MainActivity.this, error.getMessage(), Toast.LENGTH_LONG).show();\n                        }\n                    });\n            RequestQueue requestQueue = Volley.newRequestQueue(this);\n            requestQueue.add(stringRequest);\n        }\n        private void showJSON(String json){\n            ParseJSON pj = new ParseJSON(json);\n            pj.parseJSON();\n            CustomList cl = new CustomList(this,    ParseJSON.position1,ParseJSON.team,ParseJSON.points);\n            listView.setAdapter(cl);\n        }    \n    }\n<\/code><\/pre>\n<p><strong>Custom Class for adding datas to list view<\/strong><\/p>\n<pre><code>public class CustomList  extends ArrayAdapter&lt;String&gt; {\n\n    private String[] position1;\n    private String[] team;\n    private String[] points;\n    private Activity context;\n\n    public CustomList(Activity context, String[] position1, String[] team, String[] points) {\n        super(context, R.layout.list_view_layout, position1);\n        this.context = context;\n        this.position1 = position1;\n        this.team = team;\n        this.points = points;\n\n    }\n\n    @Override\n    public View getView(int position, View convertView, ViewGroup parent) {\n        LayoutInflater inflater = context.getLayoutInflater();\n        View listViewItem = inflater.inflate(R.layout.list_view_layout, null, true);\n        TextView pos1 = (TextView) listViewItem.findViewById(R.id.position1);\n        TextView teamname = (TextView) listViewItem.findViewById(R.id.teamname);\n        TextView points1 = (TextView) listViewItem.findViewById(R.id.points);\n\n\n        pos1.setText(\"Position: \"+position1[position]);\n        teamname.setText(\"Team: \"+team[position]);\n        points1.setText(\"Points: \"+points[position]);\n\n\n        return listViewItem;\n    }\n}\n<\/code><\/pre>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\"><\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved I am trying to parse a data from the following link <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] Thank You Everyone for Helping out. But I found my answer from the search over the internet. Here I used VOLLEY to call the link. JSON PARSER CLASS public class ParseJSON { public static String[] position1; public static String[] team; public static String[] points; public static final String JSON_ARRAY = &#8220;data&#8221;; public static final &#8230; <a title=\"[Solved] I am trying to parse a data from the following link\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-i-am-trying-to-parse-a-data-from-the-following-link\/\" aria-label=\"More on [Solved] I am trying to parse a data from the following link\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[452,1859,2775,2590,356],"class_list":["post-33056","post","type-post","status-publish","format-standard","hentry","category-solved","tag-android","tag-android-asynctask","tag-android-volley","tag-getjson","tag-json"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>[Solved] I am trying to parse a data from the following link - JassWeb<\/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:\/\/jassweb.com\/solved\/solved-i-am-trying-to-parse-a-data-from-the-following-link\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] I am trying to parse a data from the following link - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] Thank You Everyone for Helping out. But I found my answer from the search over the internet. Here I used VOLLEY to call the link. JSON PARSER CLASS public class ParseJSON { public static String[] position1; public static String[] team; public static String[] points; public static final String JSON_ARRAY = &quot;data&quot;; public static final ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-i-am-trying-to-parse-a-data-from-the-following-link\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-03T21:34:10+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-i-am-trying-to-parse-a-data-from-the-following-link\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-i-am-trying-to-parse-a-data-from-the-following-link\\\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/person\\\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] I am trying to parse a data from the following link\",\"datePublished\":\"2023-02-03T21:34:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-i-am-trying-to-parse-a-data-from-the-following-link\\\/\"},\"wordCount\":65,\"publisher\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#organization\"},\"keywords\":[\"android\",\"android-asynctask\",\"android-volley\",\"getjson\",\"json\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-i-am-trying-to-parse-a-data-from-the-following-link\\\/\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-i-am-trying-to-parse-a-data-from-the-following-link\\\/\",\"name\":\"[Solved] I am trying to parse a data from the following link - JassWeb\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#website\"},\"datePublished\":\"2023-02-03T21:34:10+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-i-am-trying-to-parse-a-data-from-the-following-link\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-i-am-trying-to-parse-a-data-from-the-following-link\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-i-am-trying-to-parse-a-data-from-the-following-link\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] I am trying to parse a data from the following link\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#website\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/jassweb.com\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/jass-website-logo-1.png\",\"contentUrl\":\"https:\\\/\\\/jassweb.com\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/person\\\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777613206\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777613206\",\"contentUrl\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777613206\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\\\/\\\/jassweb.com\"],\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/author\\\/jaspritsinghghumangmail-com\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] I am trying to parse a data from the following link - JassWeb","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:\/\/jassweb.com\/solved\/solved-i-am-trying-to-parse-a-data-from-the-following-link\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] I am trying to parse a data from the following link - JassWeb","og_description":"[ad_1] Thank You Everyone for Helping out. But I found my answer from the search over the internet. Here I used VOLLEY to call the link. JSON PARSER CLASS public class ParseJSON { public static String[] position1; public static String[] team; public static String[] points; public static final String JSON_ARRAY = \"data\"; public static final ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-i-am-trying-to-parse-a-data-from-the-following-link\/","og_site_name":"JassWeb","article_published_time":"2023-02-03T21:34:10+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-i-am-trying-to-parse-a-data-from-the-following-link\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-i-am-trying-to-parse-a-data-from-the-following-link\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] I am trying to parse a data from the following link","datePublished":"2023-02-03T21:34:10+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-i-am-trying-to-parse-a-data-from-the-following-link\/"},"wordCount":65,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["android","android-asynctask","android-volley","getjson","json"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-i-am-trying-to-parse-a-data-from-the-following-link\/","url":"https:\/\/jassweb.com\/solved\/solved-i-am-trying-to-parse-a-data-from-the-following-link\/","name":"[Solved] I am trying to parse a data from the following link - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2023-02-03T21:34:10+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-i-am-trying-to-parse-a-data-from-the-following-link\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-i-am-trying-to-parse-a-data-from-the-following-link\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-i-am-trying-to-parse-a-data-from-the-following-link\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] I am trying to parse a data from the following link"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777613206","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777613206","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777613206","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/33056","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=33056"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/33056\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=33056"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=33056"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=33056"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}