我正在尝试将我的模拟器的网络地址更改为10.0.2.2,以便我可以使用存储在我的localhost上的PHP来测试它,因为127.0.0.1是模拟系统自己的环回接口,而不是我主机开发机器上运行的接口
我的系统知识是有限的,所以我需要配置什么部分才能完全实现这一目标?
我是否需要在主机上更改localhost的默认IP?
我是否需要在模拟器设置中配置某些内容?
我的连接代码中是否需要更改某些内容?
public class UpdatePrediction extends AsyncTask<String, String, String> {
String user;
int success;
Context context;
// JSON parser class
JSONParser jsonParser = new JSONParser();
// JSON Node names
private static final String TAG_SUCCESS = "success";
private static final String TAG_PREDICTION = "prediction";
private static final String TAG_OCCUPANCY_PREDICTION = "occupancy_prediction";
private static final String url_prediction = "http://localhost/android_connect/get_prediction.php";
/**
* Getting product details in background thread
* */
public UpdatePrediction(Context context) {
this.context = context;
}
protected String doInBackground(String... param) {
SharedPreferences sharedPref = context.getSharedPreferences("user",
Context.MODE_PRIVATE);
user = sharedPref.getString("name", "codohert");
Log.i("update", "started");
try {
// Building Parameters
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("pid", user));
// getting product details by making HTTP request
// Note that product details url will use GET request
JSONObject json = jsonParser.makeHttpRequest(url_prediction, "GET",
params);
// check your log for json response
Log.d("Prediction Details", json.toString());
// json success tag
success = json.getInt(TAG_SUCCESS);
if (success == 1) {
Log.i("update", "success");
// successfully received product details
JSONArray predictionObj = json.getJSONArray(TAG_PREDICTION); // JSON
// Array
// get first product object from JSON Array
JSONObject prediction = predictionObj.getJSONObject(0);
String predict = prediction.getString(TAG_OCCUPANCY_PREDICTION);
String shour = predict.substring(11, 12);
String smin = predict.substring(14, 15);
Integer hour = Integer.parseInt(shour);
Integer minute = Integer.parseInt(smin);
SetTime(hour, minute);
return null;
} else {
Log.i("update", "failed");
return null;
}
} catch (JSONException e) {
Log.i("update", "catch");
e.printStackTrace();
return null;
}
}
public void SetTime(int hourOfDay, int minute) {
SharedPreferences sharedPref = context.getSharedPreferences(
"prediction", Context.MODE_PRIVATE);
SharedPreferences.Editor editorh = sharedPref.edit();
editorh.putInt("prediction_hour", hourOfDay);
editorh.commit();
SharedPreferences.Editor editorm = sharedPref.edit();
editorm.putInt("prediction_min", minute);
editorm.commit();
Toast.makeText(context, "Set Prediction", Toast.LENGTH_SHORT).show();
}
}
我可以在下面的php文件中更改目的地吗?
db_config.php
<?php
/*
* All database connection variables
*/
define('DB_USER', "root"); // db user
define('DB_PASSWORD', ""); // db password (mention your db password here)
define('DB_DATABASE', "habitabilitystudy"); // database name
define('DB_SERVER', "localhost"); // db server
?>
我之前已经问过这个问题并且被告知“只需使用10.0.2.2连接到计算机上的本地主机”。和“使用您的代码连接到地址。”但我不知道究竟是指什么。
答案 0 :(得分:3)
你应该改变你的Android客户端代码,而不是你的PHP脚本。 只需更改以下行:
`private static final String url_prediction = "http://localhost/android_connect/get_prediction.php";`
到
`private static final String url_prediction = "http://10.0.2.2/android_connect/get_prediction.php";`