无法从服务器获取json对象?

时间:2016-07-03 17:55:43

标签: php android json android-asynctask server

  

当我尝试从服务器获取对象但它没有取任何东西..当我尝试从浏览器URL获取它的工作正常它从数据库中获取所有数据但在应用程序中它不显示xampp中的listview它也工作当我使用这个网址url = new URL("http://192.168.1.110/food_nearby/");然后我将其更改为我的域名然后现在它什么都没有显示

 @Override
protected JSONObject doInBackground(final Pair<String, String>... params) {

    int count = params.length;
    URL url = null;
    int responseCode = 0;
    jsonObject = null;
    try {
        url = new URL("http://www.gampzz.com/food_nearby/");

    } catch (MalformedURLException e) {
        e.printStackTrace();
    }
    HttpURLConnection conn = null;
    try {
        conn = (HttpURLConnection) url.openConnection();
        //conn.connect();
    } catch (IOException e) {
        e.printStackTrace();
    }

0 个答案:

没有答案