我想在 android 应用程序中实现 rest webservice 来做到这一点,我从本教程创建类:here
但是当我点击匹配的按钮时出现错误
unfortunetly, android app has stopped
我在 Logcat 中没有任何内容,然后我不知道问题出在哪里
这是事件代码:
case R.id.btn_rest_test :
Log.d("method event get", "execite :)");
Rest r = new Rest();
r.get("http://www.cheesejedi.com/rest_services/get_big_cheese.php?puzzle=1");
r.getResponseString();
EditText etdit = (EditText) findViewById(R.id.rest_text);
EditText etdit2 = (EditText) findViewById(R.id.rest_error_text);
etdit.setText(r.getResponseText());
etdit2.setText(r.getError());
break;
我怎样才能做到这一点