我正在开发一个使用MySQL数据库和json的android应用程序,它可以在模拟器上正常工作但是当我在我的设备上启动它时(Galaxy S5)我正面临一个力量关闭 这是我对服务器的请求并获取json对象:
btnFaalSazi.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
String validatePhoneNumber = phoneNumber.getText().toString();
if (validatePhoneNumber.matches("^(?:0\\d{10}|9\\d{9})$")) {
txtError.setText("");
structUsers.register_number = phoneNumber.getText().toString();
String phone = structUsers.register_number;
Log.i("LOG", phone);
Log.i("LOG", "HELOOOOOO");
final ArrayList<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("register_number", phone));
String result = Webservice.readUrl("http://192.168.10.110:2233/api/register", params);
if (result != null) {
try {
G.users.clear();
JSONObject object = new JSONObject(result);
String status = object.optString("status");
String code = object.optString("code");
String message = object.optString("message");
Log.i("LOG", "status hast " + status);
Log.i("LOG", "code hast " + code);
Log.i("LOG", "mesage hast " + message);
if (status != null && code != null) {
if (Integer.parseInt(status) == -1) {
Intent intent = new Intent(ActivityRegisterNumber.this, ActivityRegisterCode.class);
intent.putExtra("REGISTERNUMBER", structUsers.register_number);
ActivityRegisterNumber.this.startActivity(intent);
}
}
if (status != null && message != null) {
if (Integer.parseInt(status) == 100) {
Toast.makeText(getApplicationContext(), message, Toast.LENGTH_LONG).show();
Log.i("LOG", "after error 100");
} else if (Integer.parseInt(status) == 101) {
Toast.makeText(getApplicationContext(), message, Toast.LENGTH_LONG).show();
Log.i("LOG", "after error 101");
} else if (Integer.parseInt(status) == 102) {
Toast.makeText(getApplicationContext(), message, Toast.LENGTH_LONG).show();
Log.i("LOG", "after error 102");
} else if (Integer.parseInt(status) == 103) {
Toast.makeText(getApplicationContext(), message, Toast.LENGTH_LONG).show();
Log.i("LOG", "after error 103");
}
}
}
catch (JSONException e) {
e.printStackTrace();
}
}
} else {
txtError.setText("Wrong phone number");
}
}
});
我认为应用程序在执行此行时会崩溃:
String result = Webservice.readUrl("http://192.168.10.110:2233/api/register", params);
这是我的网络服务模块:
public class Webservice {
public static String readUrl(String url, ArrayList<NameValuePair> params) {
try {
HttpClient client = new DefaultHttpClient();
HttpPost method = new HttpPost(url);
if (params != null) {
method.setEntity(new UrlEncodedFormEntity(params));
}
HttpResponse response = client.execute(method);
InputStream inputStream = response.getEntity().getContent();
String result = convertInputStreamToString(inputStream);
return result;
}
catch (ClientProtocolException e) {
e.printStackTrace();
}
catch (IOException e) {
e.printStackTrace();
}
return null;
}
public static String convertInputStreamToString(InputStream inputStream) {
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream));
StringBuilder builder = new StringBuilder();
String line = "";
while ((line = reader.readLine()) != null) {
builder.append(line);
}
return builder.toString();
}
catch (IOException e) {
e.printStackTrace();
}
return null;
}
}
答案 0 :(得分:2)
您的网络服务的网址是您计算机的本地网址。 模拟器工作正常,因为它可能在同一网络上。
但您的设备无法访问此网址:http://192.168.10.110:2233/。 这就是为什么它会出现一些超时错误而你的应用程序崩溃了。
如果您想在设备上进行测试,可能需要使用通用网络或使用wifi和Charles等代理工具
希望你现在能清楚这个问题。
答案 1 :(得分:0)
您是否拥有应用程序的权限?某些安全软件会阻止您的应用程序访问网络。
答案 2 :(得分:0)
我找到了答案,所以我解释一下谁将在以后阅读这篇文章,
在android 3之后,我们应该使用Asynctask进行发送和从webservice接收。
我的模拟器是android 2.2,我的设备是android 4.4,因此应用程序在模拟器上运行良好但在设备中崩溃。
答案 3 :(得分:0)
在线
String result = Webservice.readUrl("http://192.168.10.110:2233/api/register", params);
您必须为设备(电话)获取ipconfig,而不能为emu使用相同的ip配置