Android Open Source - UTHPortal-Android-Gradle J S O N Downloader






From Project

Back to project page UTHPortal-Android-Gradle.

License

The source code is released under:

MIT License

If you think the Android project UTHPortal-Android-Gradle listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.uth.uthportal.network;
// w  w  w .ja v a  2s .  co m
import android.util.Log;

import java.io.ByteArrayOutputStream;
import java.io.IOException;

import org.apache.http.HttpResponse;
import org.apache.http.HttpStatus;
import org.apache.http.StatusLine;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
/**
 * @author GeorgeT
 *
 */
public class JSONDownloader{
    
  public static String getJSON(String URI){
      HttpClient httpClient = new DefaultHttpClient(); //http client for the request
      HttpResponse wResponse; //httpResponse
      String responseStr = null; //the actual response string
      try {
        wResponse = httpClient.execute(new HttpGet(URI));
        StatusLine sLine = wResponse.getStatusLine(); //get response status
        if(sLine.getStatusCode()== HttpStatus.SC_OK){
          //request was ok.
          ByteArrayOutputStream out = new ByteArrayOutputStream(); //create output stream
          wResponse.getEntity().writeTo(out); //write our response to the stream
          out.close();
          responseStr = out.toString();
        } 
        else {
                    Log.e("NetError (" + URI + ")", sLine.getReasonPhrase());
                    //something went wrong
          wResponse.getEntity().getContent().close();//close the connection
          return null; //throw the error status
        }
      } catch (ClientProtocolException e) {
        return null;
              //TODO Handle this
          } catch (IOException e) {
            return null;
              //TODO Handle this
          }      
      return responseStr;
    }
   }




Java Source Code List

com.uth.uthportal.AboutScreen.java
com.uth.uthportal.CoursesFragment.java
com.uth.uthportal.DepartmentFragment.java
com.uth.uthportal.FoodFragment.java
com.uth.uthportal.MainScreen.java
com.uth.uthportal.SettingsScreen.java
com.uth.uthportal.adapter.AdapterManager.java
com.uth.uthportal.adapter.AdapterProvider.java
com.uth.uthportal.adapter.ExpandableListAdapter.java
com.uth.uthportal.adapter.SettingsAdapter.java
com.uth.uthportal.adapter.TabsPagerAdapter.java
com.uth.uthportal.buffers.AvailableCoursesParser.java
com.uth.uthportal.buffers.CoursesParser.java
com.uth.uthportal.buffers.FileOperation.java
com.uth.uthportal.buffers.FoodParser.java
com.uth.uthportal.buffers.GeneralAnnParser.java
com.uth.uthportal.buffers.SettingsManager.java
com.uth.uthportal.collections.AnnItem.java
com.uth.uthportal.collections.Announcements.java
com.uth.uthportal.collections.AvailableCourse.java
com.uth.uthportal.collections.CourseInfo.java
com.uth.uthportal.collections.Course.java
com.uth.uthportal.collections.DayMenu.java
com.uth.uthportal.collections.DefaultIntervals.java
com.uth.uthportal.collections.Dish.java
com.uth.uthportal.collections.Food.java
com.uth.uthportal.collections.GeneralAnnouncement.java
com.uth.uthportal.collections.Settings.java
com.uth.uthportal.network.ApiLinks.java
com.uth.uthportal.network.AppRater.java
com.uth.uthportal.network.AsyncJSONDownloader.java
com.uth.uthportal.network.JSONDownloader.java
com.uth.uthportal.service.DataSyncService.java
com.uth.uthportal.util.SystemUiHiderBase.java
com.uth.uthportal.util.SystemUiHiderHoneycomb.java
com.uth.uthportal.util.SystemUiHider.java