【发布时间】:2015-05-14 11:53:24
【问题描述】:
因此 NetBeans IDE 可以从数据库生成 RESTful Web 服务(表已打包到实体类中)。我关注了这个tutorial,已经成功生成了RESTful Web Service。
现在,我想通过我的 Android 应用程序拨打电话,但到目前为止还没有成功。我使用“Android 异步 Http 客户端 一个基于回调的 Android Http 客户端库"
这是我的代码 sn-p:
customActionBarView.findViewById(R.id.actionbar_done).setOnClickListener(
new View.OnClickListener() {
@Override
public void onClick(View v) {
// "Done"
String id = generateId();
EditText number = (EditText) findViewById(R.id.caller_phone_number);
EditText information = (EditText) findViewById(R.id.caller_information);
checkAvailability(id, number.getText().toString(), information.getText().toString());
finish();
}
});
还有这个:
public void processWebServices(RequestParams params) {
AsyncHttpClient client = new AsyncHttpClient();
client.post("http://localhost:8080/AndroidRESTful/com.erikchenmelbourne.entities.caller/create", params, new AsyncHttpResponseHandler() {
@Override
public void onSuccess(int statusCode, Header[] headers, byte[] response) {
try {
JSONObject obj = new JSONObject(response.toString());
if (obj.getBoolean("status")) {
setDefaultValues();
Toast.makeText(getApplicationContext(), "Information has been sent!", Toast.LENGTH_LONG).show();
} else {
Toast.makeText(getApplicationContext(), obj.getString("error_msg"), Toast.LENGTH_LONG).show();
}
} catch (JSONException e) {
Toast.makeText(getApplicationContext(), "Error Occured [Server's JSON response is invalid]!", Toast.LENGTH_LONG).show();
e.printStackTrace();
}
}
@Override
public void onFailure(int i, Header[] headers, byte[] bytes, Throwable throwable) {
if (i == 404) {
Toast.makeText(getApplicationContext(), "Requested resource not found", Toast.LENGTH_LONG).show();
} else if (i == 500) {
Toast.makeText(getApplicationContext(), "Something went wrong at server end", Toast.LENGTH_LONG).show();
} else {
Toast.makeText(getApplicationContext(), "Unexpected Error occcured! [Most common Error: Device might not be connected to Internet or remote server is not up and running]", Toast.LENGTH_LONG).show();
}
}
});
}
这里是 NetBeans IDE 生成的 POST 方法:
@Path("/create")
@POST
@Consumes({"application/xml", "application/json"})
public void create(@QueryParam("id") int id, @QueryParam("number") String number, @QueryParam("information") String information) {
Caller entity = new Caller (id, number, information);
super.create(entity);
}
我添加了@Path("/create") 注释并稍微修改了方法。
请说明一下,我对此很陌生,所以我不知道。我知道这是由于一些非常愚蠢的错误,但请帮忙。程序停在
“发生意外错误![最常见的错误:设备可能不是 连接到 Internet 或远程服务器未启动和运行]"
。很明显,我无法很好地连接这两个程序。
【问题讨论】:
标签: java android json rest netbeans