Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Build a Blog Reader Android App Getting Data from the Web Parsing Data Returned in JSON Format

I am catching an exception for some reason, and I am only getting 3 of the JSON object titles, Please help.

LogCat:

11-14 09:57:41.801 3174-3192/com.jkmli.blogreader E/MainListActivity﹕ Exception caught: org.json.JSONException: Unterminated string at character 3755 of {"status":"ok","count":12,"count_total":2112,"pages":176,"posts":[{"id":25713,"url":"http:\/\/blog.teamtreehouse.com\/ready-set-focus","title":"Ready. Set. Focus.","date":"2015-11-12 09:00:43","author":"Craig Dennis","thumbnail":"http:\/\/blog.teamtreehouse.com\/wp-content\/uploads\/2015\/11\/shutterstock_103058603-150x150.jpg"},{"id":25710,"url":"http:\/\/blog.teamtreehouse.com\/matthew-learned-ios-to-build-a-valuable-app-for-his-son-with-autism","title":"Matthew Learned iOS to Build a Valuable App For His Son With Autism","date":"2015-11-11 14:50:46","author":"Faye Bridge","thumbnail":"http:\/\/blog.teamtreehouse.com\/wp-content\/uploads\/2015\/11\/IMG_3502-150x150.jpg"},{"id":25709,"url":"http:\/\/blog.teamtreehouse.com\/new-course-roundup-android-swift-and-generate-london","title":"New Course Roundup: Android, Swift and Generate London","date":"2015-11-09 09:00:47","������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������

Also here is my code:

private class GetBlogPostTask extends AsyncTask<Object, Void, String> {

    @Override
    protected String doInBackground(Object[] params) {
        int responseCode = -1;

        try {
            URL blogFeedUrl = new URL("http://blog.teamtreehouse.com/api/get_recent_summary/?count=" + NUMBER_OF_POSTS);
            HttpURLConnection connection = (HttpURLConnection)blogFeedUrl.openConnection();
            connection.connect();

            responseCode = connection.getResponseCode();
            if (responseCode == HttpURLConnection.HTTP_OK) {
                InputStream inputStream = connection.getInputStream();
                Reader reader = new InputStreamReader(inputStream);
                int contentLength = connection.getContentLength();
                char[] charArray = new char[contentLength];
                reader.read(charArray);
                String responseData = new String(charArray);

                JSONObject jsonResponse = new JSONObject(responseData);
                String status = jsonResponse.getString("status");
                //Log.v(TAG, status);

                JSONArray jsonPosts = jsonResponse.getJSONArray("posts");

                for (int i = 0; i < jsonPosts.length(); i++) {
                    JSONObject jsonPost = jsonPosts.getJSONObject(i);
                    String title = jsonPost.getString("title");
                    Log.v(TAG, "Post " + i + ": " + title);
                }

            }
            else {
                Log.i(TAG, "Unsuccessful HTTP Response Code: " + responseCode);
            }

        } catch (MalformedURLException e) {
            Log.e(TAG, "Exception caught: ", e);
        } catch (IOException e) {
            Log.e(TAG, "Exception caught: ", e);
        } catch (Exception e) {
            Log.e(TAG, "Exception caught: ", e);
        }

        return "Code: " + responseCode;
    }
}