我正在开发一个Android应用程序,它使用PHP和JSON作为解析器访问MySQL数据库。目前我开发它只是为了从数据库表中检索数据。它在模拟器2.2(froyo)上运行良好,但是当我尝试在更高版本的模拟器上运行它时,它不会检索数据。 (我搜索了一个关于此问题的主题,但我没有找到任何主题。)
我想JSON类中有一些东西我在JSON中使用或错过使用HTTP连接器。 在这里,我粘贴我的JsonParse.java代码:
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import java.util.List;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.json.JSONException;
import org.json.JSONObject;
import org.apache.http.*;
import android.util.Log;
public class JsonParse {
static InputStream is = null;
static JSONObject jObj = null;
static String json = "";
public JsonParse() {
}
public JSONObject getJSONFromUrl(String url, List<NameValuePair> params) {
try {
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
httpPost.setEntity(new UrlEncodedFormEntity(params));
HttpResponse httpResponse = httpClient.execute(httpPost);
HttpEntity httpEntity = httpResponse.getEntity();
is = httpEntity.getContent();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(
is, "iso-8859-1"), 8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
is.close();
json = sb.toString();
} catch (Exception e) {
Log.e("Buffer Error", "Error Converting Result" + e.toString());
}
try {
jObj = new JSONObject(json);
} catch (JSONException e) {
Log.e("JSON Parser", "Error Parsing Data" + e.toString());
}
return jObj;
}
}
我有DefaultHTTPClient
使用过的东西,还是应该使用另一张?
对于URL,我使用一个名为ServerProcessor.java的独立类,它只包含一个这样的方法:
public class ServerProcessor extends DbConnection {
String URL = "http://10.0.2.2/myURL/serverandroid.php";
String url = "";
String response = "";
public String retrieveData() {
try {
url = URL + "?operation=retrieve";
response = call(url);
} catch (Exception e) {
}
return response;
}
}
请给我一些解决方法。 提前致谢
答案 0 :(得分:0)
似乎您没有使用AsyncTask来发出请求。较旧的Android版本会在主线程中执行此操作,但如果执行此操作,较新的版本将引发异常。
所以你应该在logcat中查看是否发生异常
开发人员指南中有关网络的更多信息:http://developer.android.com/training/basics/network-ops/connecting.html