将数据从数据库传输到java

时间:2016-11-23 12:22:08

标签: java php android mysql

我在查看从数据库收到的日期时遇到问题。让我解释一下我在做什么。我有一个数据库,其中有一个名为rate1的表,它由一个名为value的列组成,它包含双数。我的目的是获取此列中的所有数据,执行平均值并将其返回到我的java代码中。我想在TextView中显示平均值。我的问题是我在TextView上看不到任何内容。任何人都可以告诉我我哪里错了,他能否给我解决我的错误?现在我添加代码: 这是Average.java:

import android.app.ProgressDialog;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;

import android.widget.TextView;
import android.widget.Toast;

import com.android.volley.RequestQueue;
import com.android.volley.Response;
import com.android.volley.VolleyError;
import com.android.volley.toolbox.StringRequest;
import com.android.volley.toolbox.Volley;

import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

public class Average extends AppCompatActivity {

private TextView textViewResult;

private ProgressDialog loading;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_average);

    textViewResult = (TextView) findViewById(R.id.textViewResult);

    loading = ProgressDialog.show(this,"Please wait...","Fetching...",false,false);

    String url = Config.DATA_URL.toString().trim();

    StringRequest stringRequest = new StringRequest(url, new Response.Listener<String>() {
        @Override
        public void onResponse(String response) {
            loading.dismiss();
            showJSON(response);
        }
    },
            new Response.ErrorListener() {
                @Override
                public void onErrorResponse(VolleyError error) {
                    Toast.makeText(Average.this,error.getMessage().toString(),Toast.LENGTH_LONG).show();
                }
            });

    RequestQueue requestQueue = Volley.newRequestQueue(this);
    requestQueue.add(stringRequest);
}

private void showJSON(String response){
    String name="";
    try {
        JSONObject jsonObject = new JSONObject(response);
        JSONArray result = jsonObject.getJSONArray(Config.JSON_ARRAY);
        JSONObject collegeData = result.getJSONObject(0);
        name = collegeData.getString(Config.KEY_NAME);
    } catch (JSONException e) {
        e.printStackTrace();
    }
    textViewResult.setText("Name:\t"+name);
 }

}

这是Config.java:

public class Config {
public static final String DATA_URL = "https://lbstudios.000webhostapp.com/Average.php";
public static final String KEY_NAME = "value";
public static final String JSON_ARRAY = "result";
}

这是Average.php:

<?php
  $connect = mysqli_connect("********", "********", "********", "*******");
$response = mysqli_query($connect, 'SELECT AVG(value) AS average FROM rate1');
$result = array();
if ($response) {

/* fetch associative array */
while ($row = mysqli_fetch_assoc($response)) {
    $result[] = $row;
}

/* free result set */
mysqli_free_result($result);
}
echo json_encode($result);
?>

1 个答案:

答案 0 :(得分:0)

我认为这里出现了一个小问题;

JSONObject jsonObject = new JSONObject(response);

JSONArray result = jsonObject.getJSONArray(Config.JSON_ARRAY);

假设与服务器成功建立连接,并返回$result数组作为响应。

在这种特殊情况下,json_encode函数返回的json数组不会包含名称result。相反,它们只是连接在一起的JSON对象。

我能提出的可能解决方案是删除我提到的上述行并将其替换为;

try { 
JSONArray result = new JSONArray(response);
for(int i=0; i<result.length(); i++){
   JSONObject obj = result.getJSONObject(i);
  // Proceed with your logic with each object accordingly.
}
} catch (JSONException e) { e.printStackTrace(); 
}