I am facing a problem with getJSONFromUrl(), even though I have add the library. Which I get from [here].(http://www.findjar.com/jar/com/googlecode/json-simple/json-simple/1.1/json-simple-1.1.jar.html)
Below is my Class for getting data from URL in JSON format.
I am not sure why the Problem is appearing. They keep display the message
can't resolve the method getJSONFromUrl
public class AsyncTaskParseJson extends AsyncTask<String, String, String> {
        final String TAG = "AsyncTaskParseJson.java";
        // set your json string url here
        String yourJsonStringUrl = "http://demo.codeofaninja.com/tutorials/json-example-with-php/index.php";
        // contacts JSONArray
        JSONArray dataJsonArr = null;
        @Override
        protected void onPreExecute() {}
        @Override
        protected String doInBackground(String... arg0) {
            try {
                // instantiate our json parser
                JsonParser jParser = new JsonParser();
                // get json string from url
                JSONObject json = jParser.getJSONFromUrl(yourJsonStringUrl);
                // get the array of users
                dataJsonArr = json.getJSONArray("Users");
                // loop through all users
                for (int i = 0; i < dataJsonArr.length(); i++) {
                    JSONObject c = dataJsonArr.getJSONObject(i);
                    // Storing each json item in variable
                    String firstname = c.getString("firstname");
                    String lastname = c.getString("lastname");
                    String username = c.getString("username");
                    // show the values in our logcat
                    Log.e(TAG, "firstname: " + firstname
                            + ", lastname: " + lastname
                            + ", username: " + username);
                }
            } catch (JSONException e) {
                e.printStackTrace();
            }
            return null;
        }
        @Override
        protected void onPostExecute(String strFromDoInBg) {}
    }
So any help will be appreciated.
 
     
     
     
    