Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have written a code for retrieving DB values from MYSQL DB from android through JSON objects. The MYSQL DB contains Latitude and longitude values of many locations. I am able to retrieve Latitude and Longitude values from DB using JSON object.

And my need is to pass these latitude and longitude values(retrieved using JSON object) from my android app to android google map to mark the locations.

Please help.

Here is the code for it :

public class Androidmap extends Activity {

TextView httpStuff;
int ct_id;
int ct_name;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
httpStuff = (TextView) findViewById(R.id.hello_world);

GetMethodEx test = new GetMethodEx();
String returned;
try {
    returned = test.getInternetData();
    httpStuff.setText(returned);
} catch (Exception e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}

}

public class GetMethodEx {

public String getInternetData() throws Exception {

    BufferedReader in = null;
    String data = "";
    String returnString = null;
    String returnString1 = null;
    // httpGet

    try {

        HttpClient client = new DefaultHttpClient();
        URI website = new URI("http://192.168.1.15/latlonret1.php");
        HttpGet request = new HttpGet();
        request.setURI(website);
        HttpResponse response = client.execute(request);
        in = new BufferedReader(new InputStreamReader(response
                .getEntity().getContent()));
        StringBuffer sb = new StringBuffer("");
        String l = "";
        String nl = System.getProperty("line.separator");

        while ((l = in.readLine()) != null) {
            sb.append(l + nl);
        }
        in.close();
        data = sb.toString();
        // return data;
    } catch (Exception e) {
        Log.e("log_tag", "Error converting result " + e.toString());
    }
    // parse json data
    try {
        JSONArray jArray = new JSONArray(data);
        for (int i = 0; i < jArray.length(); i++) {
            JSONObject json_data = jArray.getJSONObject(i);
            returnString += "\n\t" + jArray.getJSONObject(i);

        System.out.println(returnString);
        System.out.println(returnString1); 
        }
    } catch (JSONException e) {
        Log.e("log_tag", "Error parsing data " + e.toString());
    }

    return returnString;

  }     
  }
  }
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.