I have a problem with HttpGet that I've searched on stackoverflow and on other websites, I even followed some examples but nothing to do, it doesn't work.
This is my code:
    HttpClient          client = new DefaultHttpClient();
    HttpGet             request = new HttpGet("http://myurl.com/getit?token=" + _token);
    HttpResponse        response;
    List<NameValuePair> params = new ArrayList<NameValuePair>();
    String              jsonString;
    Gson                gson;
    Modules[]           modulesList;
    try {
        response = client.execute(request);
        //jsonString = EntityUtils.toString(response.getEntity());
        //gson = new GsonBuilder().setPrettyPrinting().create();
        //modulesList = gson.fromJson(jsonString, Modules[].class);
    } catch (Exception e) {
        System.out.println("FAIL: " + e.getMessage());
    }
It always return a null pointer exception. I've tried to display the URL, copy/paste in Chrome and the website does display my JSON.
 
     
    