我正在使用此video尝试将Android应用程序连接到本地托管的MySQL数据库。 php脚本似乎不是问题,因为它在本地工作正常(通过Internet Explorer)并且我继续接收空指针异常导致应用程序崩溃。
主要活动
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
this.responseTextView = (TextView) this.findViewById(R.id.responseTextView);
new GetAllCustomerTask().execute(new ApiConnector());
}
public void setTextToTextView(JSONArray jsonArray)
{
String s = "";
for(int i=0; i<jsonArray.length();i++){
JSONObject json = null;
try {
json = jsonArray.getJSONObject(i);
s = s +
"Name : "+json.getString("name")+"\n"+
"Owner : "+json.getInt("owner")+"\n"+
"Species : "+json.getInt("species")+"\n"+
"Sex : "+json.getInt("sex")+"\n"+
"Birth : "+json.getInt("birth")+"\n"+
"Death : "+json.getInt("death")+"\n";
} catch (JSONException e) {
e.printStackTrace();
}
}
this.responseTextView.setText(s);
}
private class GetAllCustomerTask extends AsyncTask<ApiConnector,Long,JSONArray>
{
@Override
protected JSONArray doInBackground(ApiConnector... params) {
return params[0].GetAllCustomers();
}
@Override
protected void onPostExecute(JSONArray jsonArray) {
setTextToTextView(jsonArray);
}
}
ApiConnector类
String url = "http://localhost/getallcustomers.php";
HttpEntity httpEntity = null;
try
{
DefaultHttpClient httpClient = new DefaultHttpClient(); // Default HttpClient
HttpGet httpGet = new HttpGet(url);
HttpResponse httpResponse = httpClient.execute(httpGet);
httpEntity = httpResponse.getEntity();
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
JSONArray jsonArray = null;
if (httpEntity != null) {
try {
String entityResponse = EntityUtils.toString(httpEntity);
Log.e("Entity Response : ", entityResponse);
jsonArray = new JSONArray(entityResponse);
} catch (JSONException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
return jsonArray;
}
我认为这个问题可能与网址有关,但正如我之前所说,它似乎通过互联网浏览器正常工作。
非常感谢任何帮助。
答案 0 :(得分:0)
您的问题与Android,MySQL或PHP无关。在我看来,您需要花时间学习计算机网络的基础知识,以便在您的计算机和移动设备之间进行通信。
看一下这篇文章:How to connect Android with PHP MySQL
本文可以帮助您更好地了解您的真正问题。以下是您需要考虑的主要步骤:
希望这可以帮助您解决问题。